2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 22:45:39 +00:00

quote newlines in multiline string

This commit is contained in:
David Lawrence
2000-01-31 21:59:15 +00:00
parent af22dc3723
commit 94b166ffa5

View File

@@ -15,7 +15,7 @@
* SOFTWARE. * SOFTWARE.
*/ */
/* $Id: rndc.c,v 1.1 2000/01/31 14:30:48 tale Exp $ */ /* $Id: rndc.c,v 1.2 2000/01/31 21:59:15 tale Exp $ */
/* /*
* Principal Author: DCL * Principal Author: DCL
@@ -204,20 +204,20 @@ ndc_signalhandler(omapi_object_t *handle, const char *name, va_list ap) {
static void static void
usage(void) { usage(void) {
fprintf(stderr, "\ fprintf(stderr, "\
Usage: %s [-p port] [-m] server command [command ...]\n Usage: %s [-p port] [-m] server command [command ...]\n\
\n\
Where command is one of the following for named: Where command is one of the following for named:\n\
\n\
*status Display ps(1) status of named. *status Display ps(1) status of named.\n\
*dumpdb Dump database and cache to /var/tmp/named_dump.db. *dumpdb Dump database and cache to /var/tmp/named_dump.db.\n\
reload Reload configuration file and zones. reload Reload configuration file and zones.\n\
*stats Dump statistics to /var/tmp/named.stats. *stats Dump statistics to /var/tmp/named.stats.\n\
*trace Increment debugging level by one. *trace Increment debugging level by one.\n\
*notrace Set debugging level to 0. *notrace Set debugging level to 0.\n\
*querylog Toggle query logging. *querylog Toggle query logging.\n\
*stop Stop the server. *stop Stop the server.\n\
*restart Restart the server. *restart Restart the server.\n\
\n\
* == not yet implemented\n", * == not yet implemented\n",
progname); progname);
} }