+2006-01-29 Guillem Jover <guillem@debian.org>
+
+ * utils/start-stop-daemon.c (do_help): Print the proper version giving
+ it as an argument to printf, instead of printing 'VERSION'.
+
2006-01-29 Guillem Jover <guillem@debian.org>
* configure.ac: Bump version to 1.13.14~.
dpkg (1.13.14~) UNRELEASED; urgency=low
+ [ Guillem Jover ]
+ * Make start-stop-daemon print the proper version instead of 'VERSION'.
-- Guillem Jover <guillem@debian.org> Sun, 29 Jan 2006 06:02:58 +0200
do_help(void)
{
printf(
-"start-stop-daemon VERSION for Debian - small and fast C version written by\n"
+"start-stop-daemon %s for Debian - small and fast C version written by\n"
"Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl>, public domain.\n"
"\n"
"Usage:\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");
+" 3 = trouble 2 = with --retry, processes wouldn't die\n",
+ VERSION);
}