fix spelling errors reported by Fossies.
This commit is contained in:
@@ -69,7 +69,7 @@
|
||||
#define safeGet(in) in == NULL ? "" : in
|
||||
|
||||
/*%
|
||||
* Structure to hold everthing needed by this "instance" of the SQLite3
|
||||
* Structure to hold everything needed by this "instance" of the SQLite3
|
||||
* module remember, the module code is only loaded once, but may have
|
||||
* many separate instances.
|
||||
*/
|
||||
@@ -553,7 +553,7 @@ sqlite3_process_rs(sqlite3_instance_t *db, dns_sdlzlookup_t *lookup,
|
||||
if (*endp != '\0' || ttl < 0) {
|
||||
db->log(ISC_LOG_ERROR, "SQLite3 module: TTL "
|
||||
"must be "
|
||||
"a postive number");
|
||||
"a positive number");
|
||||
return (ISC_R_FAILURE);
|
||||
}
|
||||
|
||||
@@ -593,7 +593,7 @@ sqlite3_process_rs(sqlite3_instance_t *db, dns_sdlzlookup_t *lookup,
|
||||
if (*endp != '\0' || ttl < 0) {
|
||||
db->log(ISC_LOG_ERROR, "SQLite3 module: TTL "
|
||||
"must be "
|
||||
"a postive number");
|
||||
"a positive number");
|
||||
free(tmpString);
|
||||
return (ISC_R_FAILURE);
|
||||
}
|
||||
@@ -752,7 +752,7 @@ dlz_allnodes(const char *zone, void *dbdata, dns_sdlzallnodes_t *allnodes) {
|
||||
ttl = strtol(safeGet(row[0]), &endp, 10);
|
||||
if (*endp != '\0' || ttl < 0) {
|
||||
db->log(ISC_LOG_ERROR, "SQLite3 module: TTL must be "
|
||||
"a postive number");
|
||||
"a positive number");
|
||||
result = ISC_R_FAILURE;
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user