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
This commit is contained in:
parent
c7420eccd9
commit
1a19ce39db
4 changed files with 4 additions and 4 deletions
|
|
@ -51,7 +51,7 @@ readline(const char *prompt) {
|
|||
return NULL;
|
||||
}
|
||||
return buf;
|
||||
};
|
||||
}
|
||||
|
||||
#define add_history(line)
|
||||
|
||||
|
|
|
|||
|
|
@ -218,7 +218,7 @@ proxystream_on_header_data_cb(const isc_result_t result,
|
|||
proxystream_failed_read_cb(sock, result);
|
||||
break;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
static void
|
||||
proxystream_handle_incoming_header_data(isc_nmsocket_t *sock,
|
||||
|
|
|
|||
|
|
@ -200,7 +200,7 @@ proxyudp_on_header_data_cb(const isc_result_t result,
|
|||
|
||||
unexpected:
|
||||
isc__nm_proxyudp_failed_read_cb(proxysock, ISC_R_UNEXPECTED, false);
|
||||
};
|
||||
}
|
||||
|
||||
static isc_nmsocket_t *
|
||||
proxyudp_sock_new(isc__networker_t *worker, const isc_nmsocket_type_t type,
|
||||
|
|
|
|||
|
|
@ -267,7 +267,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->manager->mctx, len);
|
||||
memmove(client->ede->value, ede, len);
|
||||
};
|
||||
}
|
||||
|
||||
static void
|
||||
ns_client_endrequest(ns_client_t *client) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue