Improve message printed when signaling processes to stop. Patch from Matias A. Fonzo...
authorPetter Reinholdtsen <pere@hungry.com>
Sat, 25 Jan 2014 21:20:22 +0000 (21:20 +0000)
committerPetter Reinholdtsen <pere@hungry.com>
Sat, 25 Jan 2014 21:20:22 +0000 (21:20 +0000)
git-svn-id: svn://svn.sv.gnu.org/sysvinit/sysvinit/trunk@126 456724a4-4300-0410-8514-c89748c515a2

doc/Changelog
src/init.c

index 09ea0e31e252f33a7fddd63193170a97b96cb35e..f926f194fb05560dac1f3f4dc5bda9cc9d149aeb 100644 (file)
@@ -51,6 +51,8 @@ sysvinit (2.89dsf) UNRELEASED; urgency=low
     to get the source building on FreeBSD.
   * Add some code to be able to detect programs even as user with
     kernel 3.0 and above
+  * Improve message printed when signaling processes to stop.
+    Patch from Matias A. Fonzo at the dragora project.
 
  -- Petter Reinholdtsen <pere@hungry.com>  Sun Apr 11 11:28:55 CEST 2010
 
index 51f5a551fd9d4f61b0f74bb5c2bcbdc4bb652ac5..2bd79bd274b00512f4cbccc5e2efbdc6a98fc990 100644 (file)
@@ -1542,14 +1542,14 @@ void read_inittab(void)
                case 0: /* Send TERM signal */
                        if (talk)
                                initlog(L_CO,
-                                       "Sending processes the TERM signal");
+                                       "Sending processes configured via /etc/inittab the TERM signal");
                        kill(-(ch->pid), SIGTERM);
                        foundOne = 1;
                        break;
                case 1: /* Send KILL signal and collect status */
                        if (talk)
                                initlog(L_CO,
-                                       "Sending processes the KILL signal");
+                                       "Sending processes configured via /etc/inittab the KILL signal");
                        kill(-(ch->pid), SIGKILL);
                        break;
        }