]> err.no Git - dpkg/commitdiff
No longer use deprecated multi-line string literal
authorWichert Akkerman <wakkerma@debian.org>
Sat, 21 Apr 2001 23:49:48 +0000 (23:49 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Sat, 21 Apr 2001 23:49:48 +0000 (23:49 +0000)
ChangeLog
utils/start-stop-daemon.c

index f44c5acc6576ed8d156dee0f8723ad2f78c56038..fea1506da533269b1bbe6c4ec3f4bd649b85871b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Apr 22 01:45:25 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
+
+  * utils/start-stop-daemon.c: no longer use deprecated multi-line string
+  * utils/md5sum.c: include stdlib.h to get declaration of exit
+
 Sat Apr 21 18:00:31 CDT 2001 Adam Heath <doogie@debian.org>
 
   * main/main.c: reworked \\ parsing in commandfd.
index 26882095930ee1bbbbc7b35c36e2c10325a541e4..44b5d1262c750624dae32327e77bdf695e4dc545 100644 (file)
@@ -247,42 +247,41 @@ clear(struct pid_list **list)
 static void
 do_help(void)
 {
-       printf("\
-start-stop-daemon for Debian GNU/Linux - small and fast C version written by\n\
-Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl>, public domain.\n"
-VERSION "\n\
-\n\
-Usage:
-  start-stop-daemon -S|--start options ... -- arguments ...\n\
-  start-stop-daemon -K|--stop options ...\n\
-  start-stop-daemon -H|--help\n\
-  start-stop-daemon -V|--version\n\
-\n\
-Options (at least one of --exec|--pidfile|--user is required):
-  -x|--exec <executable>        program to start/check if it is running\n\
-  -p|--pidfile <pid-file>       pid file to check\n\
-  -c|--chuid <name|uid[:group|gid]>
-               change to this user/group before starting process\n\
-  -u|--user <username>|<uid>    stop processes owned by this user\n\
-  -n|--name <process-name>      stop processes with this name\n\
-  -s|--signal <signal>          signal to send (default TERM)\n\
-  -a|--startas <pathname>       program to start (default is <executable>)\n\
-  -N|--nicelevel <incr>         add incr to the process's nice level\n\
-  -b|--background               force the process to detach\n\
-  -m|--make-pidfile             create the pidfile before starting\n\
-  -R|--retry <schedule>         check whether processes die, and retry\n\
-  -t|--test                     test mode, don't do anything\n\
-  -o|--oknodo                   exit status 0 (not 1) if nothing done\n\
-  -q|--quiet                    be more quiet\n\
-  -v|--verbose                  be more verbose\n\
-Retry <schedule> is <item>|/<item>/... where <item> is one of
- -<signal-num>|[-]<signal-name>  send that signal
- <timeout>                       wait that many seconds
- forever                         repeat remainder forever
-or <schedule> may be just <timeout>, meaning <signal>/<timeout>/KILL/<timeout>
-\n\
-Exit status:  0 = done      1 = nothing done (=> 0 if --oknodo)
-              3 = trouble   2 = with --retry, processes wouldn't die\n");
+       printf(
+"start-stop-daemon VERSION for Debian - small and fast C version written by\n"
+"Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl>, public domain.\n"
+"\n"
+"Usage:\n"
+"  start-stop-daemon -S|--start options ... -- arguments ...\n"
+"  start-stop-daemon -K|--stop options ...\n"
+"  start-stop-daemon -H|--help\n"
+"  start-stop-daemon -V|--version\n"
+"\n"
+"Options (at least one of --exec|--pidfile|--user is required):\n"
+"  -x|--exec <executable>        program to start/check if it is running\n"
+"  -p|--pidfile <pid-file>       pid file to check\n"
+"  -c|--chuid <name|uid[:group|gid]>\n"
+"              change to this user/group before starting process\n"
+"  -u|--user <username>|<uid>    stop processes owned by this user\n"
+"  -n|--name <process-name>      stop processes with this name\n"
+"  -s|--signal <signal>          signal to send (default TERM)\n"
+"  -a|--startas <pathname>       program to start (default is <executable>)\n"
+"  -N|--nicelevel <incr>         add incr to the process's nice level\n"
+"  -b|--background               force the process to detach\n"
+"  -m|--make-pidfile             create the pidfile before starting\n"
+"  -R|--retry <schedule>         check whether processes die, and retry\n"
+"  -t|--test                     test mode, don't do anything\n"
+"  -o|--oknodo                   exit status 0 (not 1) if nothing done\n"
+"  -q|--quiet                    be more quiet\n"
+"  -v|--verbose                  be more verbose\n"
+"Retry <schedule> is <item>|/<item>/... where <item> is one of\n"
+" -<signal-num>|[-]<signal-name>  send that signal\n"
+" <timeout>                       wait that many seconds\n"
+" forever                         repeat remainder forever\n"
+"or <schedule> may be just <timeout>, meaning <signal>/<timeout>/KILL/<timeout>\n"
+"\n"
+"Exit status:  0 = done      1 = nothing done (=> 0 if --oknodo)\n"
+"              3 = trouble   2 = with --retry, processes wouldn't die\n");
 }