mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-29 01:49:02 -04:00
remove extraneous spaces
This commit is contained in:
parent
a97b72bac7
commit
2fa9cf0bf9
2 changed files with 10 additions and 10 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: keycreate.c,v 1.4 2001/02/14 00:13:32 bwelling Exp $ */
|
||||
/* $Id: keycreate.c,v 1.5 2001/02/28 03:05:00 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
|
||||
#define CHECK(str, x) { \
|
||||
if ((x) != ISC_R_SUCCESS) { \
|
||||
fprintf(stderr, "I: %s: %s\n", (str), isc_result_totext(x)); \
|
||||
fprintf(stderr, "I:%s: %s\n", (str), isc_result_totext(x)); \
|
||||
exit(-1); \
|
||||
} \
|
||||
}
|
||||
|
|
@ -79,7 +79,7 @@ recvquery(isc_task_t *task, isc_event_t *event) {
|
|||
REQUIRE(reqev != NULL);
|
||||
|
||||
if (reqev->result != ISC_R_SUCCESS) {
|
||||
fprintf(stderr, "I: request event result: %s\n",
|
||||
fprintf(stderr, "I:request event result: %s\n",
|
||||
isc_result_totext(reqev->result));
|
||||
exit(-1);
|
||||
}
|
||||
|
|
@ -96,7 +96,7 @@ recvquery(isc_task_t *task, isc_event_t *event) {
|
|||
|
||||
if (response->rcode != dns_rcode_noerror) {
|
||||
result = ISC_RESULTCLASS_DNSRCODE + response->rcode;
|
||||
fprintf(stderr, "I: response rcode: %s\n",
|
||||
fprintf(stderr, "I:response rcode: %s\n",
|
||||
isc_result_totext(result));
|
||||
exit(-1);
|
||||
}
|
||||
|
|
@ -202,7 +202,7 @@ main(int argc, char *argv[]) {
|
|||
RUNCHECK(isc_app_start());
|
||||
|
||||
if (argc < 2) {
|
||||
fprintf(stderr, "I: no DH key provided\n");
|
||||
fprintf(stderr, "I:no DH key provided\n");
|
||||
exit(-1);
|
||||
}
|
||||
ourkeyname = argv[1];
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: keydelete.c,v 1.3 2001/02/14 00:13:33 bwelling Exp $ */
|
||||
/* $Id: keydelete.c,v 1.4 2001/02/28 03:05:01 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
|
||||
#define CHECK(str, x) { \
|
||||
if ((x) != ISC_R_SUCCESS) { \
|
||||
fprintf(stderr, "I: %s: %s\n", (str), isc_result_totext(x)); \
|
||||
fprintf(stderr, "I:%s: %s\n", (str), isc_result_totext(x)); \
|
||||
exit(-1); \
|
||||
} \
|
||||
}
|
||||
|
|
@ -74,7 +74,7 @@ recvquery(isc_task_t *task, isc_event_t *event) {
|
|||
REQUIRE(reqev != NULL);
|
||||
|
||||
if (reqev->result != ISC_R_SUCCESS) {
|
||||
fprintf(stderr, "I: request event result: %s\n",
|
||||
fprintf(stderr, "I:request event result: %s\n",
|
||||
isc_result_totext(reqev->result));
|
||||
exit(-1);
|
||||
}
|
||||
|
|
@ -91,7 +91,7 @@ recvquery(isc_task_t *task, isc_event_t *event) {
|
|||
|
||||
if (response->rcode != dns_rcode_noerror) {
|
||||
result = ISC_RESULTCLASS_DNSRCODE + response->rcode;
|
||||
fprintf(stderr, "I: response rcode: %s\n",
|
||||
fprintf(stderr, "I:response rcode: %s\n",
|
||||
isc_result_totext(result));
|
||||
exit(-1);
|
||||
}
|
||||
|
|
@ -157,7 +157,7 @@ main(int argc, char **argv) {
|
|||
RUNCHECK(isc_app_start());
|
||||
|
||||
if (argc < 2) {
|
||||
fprintf(stderr, "I: no key to delete\n");
|
||||
fprintf(stderr, "I:no key to delete\n");
|
||||
exit(-1);
|
||||
}
|
||||
keyname = argv[1];
|
||||
|
|
|
|||
Loading…
Reference in a new issue