mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Remove redundant semicolons after the closing braces of functions
(cherry picked from commit 1a19ce39db)
This commit is contained in:
parent
781eb2e186
commit
b3d8f2796a
2 changed files with 2 additions and 2 deletions
|
|
@ -51,7 +51,7 @@ readline(const char *prompt) {
|
|||
return NULL;
|
||||
}
|
||||
return buf;
|
||||
};
|
||||
}
|
||||
|
||||
#define add_history(line)
|
||||
|
||||
|
|
|
|||
|
|
@ -215,7 +215,7 @@ ns_client_extendederror(ns_client_t *client, uint16_t code, const char *text) {
|
|||
client->ede->length = len;
|
||||
client->ede->value = isc_mem_get(client->mctx, len);
|
||||
memmove(client->ede->value, ede, len);
|
||||
};
|
||||
}
|
||||
|
||||
static void
|
||||
ns_client_endrequest(ns_client_t *client) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue