* Corrected Standards-Version to 2.3.0.1 (Bug#16769)

* Reworked one line of an older patch because it prevented syslogd from
    binding the socket with the result that no messages were forwarded to
    other hosts.
  * Changed the behaviour of klogd when receiving a terminate signal. Now
    the program terminates immediately instead of completing the receipt of
    a kernel message.  (Bug#16796, Bug#16828, Bug#16148)
  * Noticed a bug which was closed by 1.3-18 (Bug#14776)
  * Changed Maintainer address to joey@debian.org
This commit is contained in:
Joey Schulze
1998-01-09 00:03:55 +00:00
parent 05c061eaa5
commit f1bddb54ec
2 changed files with 16 additions and 4 deletions

11
klogd.c
View File

@ -174,6 +174,14 @@
* Thu Aug 21 12:11:27 MET DST 1997: Martin Schulze <joey@infodrom.north.de>
* Fixed little mistake which prevented klogd from accepting a
* console log
*
* Fri Jan 9 00:39:52 CET 1998: Martin Schulze <joey@infodrom.north.de>
* Changed the behaviour of klogd when receiving a terminate
* signal. Now the program terminates immediately instead of
* completing the receipt of a kernel message, i.e the read()
* call. The old behaveiour could result in klogd being
* recognized as being undead, because it'll only die after a
* message has been received.
*/
@ -308,8 +316,7 @@ void stop_daemon(sig)
int sig;
{
change_state = 1;
terminate = 1;
Terminate();
return;
}