From: Landon Fuller Date: Sun, 20 Nov 2005 21:53:08 +0000 (+0000) Subject: FreeBSD recently added SIGLWP to sys/signal.h, uncovering this typo. X-Git-Tag: Release-7.0.0~8264 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=37f46377d33a2ef592e77fb18b2ec8461ab22e06;p=bacula%2Fbacula FreeBSD recently added SIGLWP to sys/signal.h, uncovering this typo. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@2608 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/lib/signal.c b/bacula/src/lib/signal.c index f9be096f4d..3b06e2f08a 100644 --- a/bacula/src/lib/signal.c +++ b/bacula/src/lib/signal.c @@ -245,7 +245,7 @@ void init_signals(void terminate(int sig)) sig_names[SIGWAITING] = _("No runnable lwp"); #endif #ifdef SIGLWP - sig_name[SIGLWP] = _("SIGLWP special signal used by thread library"); + sig_names[SIGLWP] = _("SIGLWP special signal used by thread library"); #endif #ifdef SIGFREEZE sig_names[SIGFREEZE] = _("Checkpoint Freeze");