Explorar el Código

Fix typo in ssd help message

Wichert Akkerman hace 24 años
padre
commit
c3acb250fd
Se han modificado 3 ficheros con 6 adiciones y 1 borrados
  1. 4 0
      ChangeLog
  2. 1 0
      debian/changelog
  3. 1 1
      utils/start-stop-daemon.c

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+Wed Jan 30 00:24:36 CET 2002 Wichert Akkerman <wakkerma@debian.org>
+
+  * utils/start-stop-daemon.c: Fix tyop in help message
+
 Fri Jan 18 20:40:42 CET 2002 Wichert Akkerman <wakkerma@debian.org>
 
   * scripts/dpkg-source.pl: Use -Z option for patch and set TZ to UTC0

+ 1 - 0
debian/changelog

@@ -69,6 +69,7 @@ dpkg (1.10) unstable; urgency=low
   * Handle errors when verifying md5sums. Closes: Bug#102367
   * dpkg-source now uses reliable timestamps for changed files.
     Closes: Bug#105750
+  * Fix typo in start-stop-daemon help message. Closes: Bug#131439
 
  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 20 Aug 2001 14:54:38 +0200
 

+ 1 - 1
utils/start-stop-daemon.c

@@ -535,7 +535,7 @@ parse_options(int argc, char * const *argv)
 	if (signal_str != NULL) {
 		if (parse_signal (signal_str, &signal_nr) != 0)
 			badusage("signal value must be numeric or name"
-				 " of signal (KILL, INTR, ...)");
+				 " of signal (KILL, INT, ...)");
 	}
 
 	if (schedule_str != NULL) {