Skip to content
Snippets Groups Projects
Commit c948b314 authored by Robert S. Edmonds's avatar Robert S. Edmonds Committed by Daniel Salzman
Browse files

Various spelling and typo fixes

parent 0a74d5a0
Branches
Tags
No related merge requests found
......@@ -33,7 +33,7 @@ Knot DNS supports the following DNS features:
- AXFR - master, slave
- IXFR - master (primary master experimental), slave
- TSIG
- ENDS0
- EDNS0
- DNSSEC, including NSEC3
- NSID
- Unknown RR types
......
......@@ -31,7 +31,7 @@ Knot DNS supports the following DNS features:
@item TCP/UDP protocols
@item AXFR, IXFR - master, slave
@item TSIG
@item ENDS0
@item EDNS0
@item DNSSEC, including NSEC3
@item NSID
@item Unknown RR types
......
......@@ -151,7 +151,7 @@ Show TTL value.
Use TCP protocol (default is UDP for standard query and TCP for AXFR/IXFR).
.TP
.BR + [ no ] fail
Stop quering next nameserver if SERVFAIL response is received.
Stop querying next nameserver if SERVFAIL response is received.
.TP
.BR + [ no ] ignore
Don't use TCP automatically if truncated reply is received.
......
......@@ -41,7 +41,7 @@ Print help.
Disable recursion.
.TP
.B \-s
Stop quering next nameserver if SERVFAIL response is received.
Stop querying next nameserver if SERVFAIL response is received.
.TP
.B \-T
Use TCP protocol.
......
......@@ -98,7 +98,7 @@ typedef struct {
bool hide_cname;
} style_t;
/*! \brief Parametr handler. */
/*! \brief Parameter handler. */
typedef int (*param_handle_f)(const char *arg, void *params);
/*! \brief Parameter argument type. */
......
......@@ -409,7 +409,7 @@ static void process_query(const query_t *query)
WALK_LIST(server, query->servers) {
srv_info_t *remote = (srv_info_t *)server;
DBG("Quering for owner(%s), class(%u), type(%u), server(%s), "
DBG("Querying for owner(%s), class(%u), type(%u), server(%s), "
"port(%s), protocol(%s)\n", query->owner, query->class_num,
query->type_num, remote->name, remote->service,
get_sockname(socktype));
......@@ -652,7 +652,7 @@ static void process_query_xfr(const query_t *query)
// Use the first nameserver from the list.
srv_info_t *remote = HEAD(query->servers);
DBG("Quering for owner(%s), class(%u), type(%u), server(%s), "
DBG("Querying for owner(%s), class(%u), type(%u), server(%s), "
"port(%s), protocol(%s)\n", query->owner, query->class_num,
query->type_num, remote->name, remote->service,
get_sockname(socktype));
......
......@@ -90,7 +90,7 @@ typedef struct {
int32_t wait;
/*!< Ignore truncated response. */
bool ignore_tc;
/*!< Stop quering if servfail. */
/*!< Stop querying if servfail. */
bool servfail_stop;
/*!< Class number (16unsigned + -1 uninitialized). */
int32_t class_num;
......@@ -116,7 +116,7 @@ typedef struct {
/*! \brief Settings for dig. */
typedef struct {
/*!< Stop processing - just pring help, version,... */
/*!< Stop processing - just print help, version,... */
bool stop;
/*!< List of DNS queries to process. */
list_t queries;
......
......@@ -43,7 +43,7 @@
/*! \brief nsupdate-specific params data. */
typedef struct {
/*!< Stop processing - just pring help, version,... */
/*!< Stop processing - just print help, version,... */
bool stop;
/*!< List of files with query data. */
list_t qfiles;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment