Missing space between words.
This commit is contained in:
parent
25447b3841
commit
a3cd273751
1 changed files with 10 additions and 4 deletions
|
@ -17,7 +17,7 @@
|
||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
$Id: process.c,v 1.1.2.77 2003/11/27 23:24:59 guus Exp $
|
$Id: process.c,v 1.1.2.78 2003/12/07 14:29:02 guus Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
|
@ -431,13 +431,19 @@ bool execute_script(const char *name, char **envp)
|
||||||
static RETSIGTYPE sigterm_handler(int a)
|
static RETSIGTYPE sigterm_handler(int a)
|
||||||
{
|
{
|
||||||
logger(LOG_NOTICE, _("Got %s signal"), "TERM");
|
logger(LOG_NOTICE, _("Got %s signal"), "TERM");
|
||||||
|
if(running)
|
||||||
running = false;
|
running = false;
|
||||||
|
else
|
||||||
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static RETSIGTYPE sigquit_handler(int a)
|
static RETSIGTYPE sigquit_handler(int a)
|
||||||
{
|
{
|
||||||
logger(LOG_NOTICE, _("Got %s signal"), "QUIT");
|
logger(LOG_NOTICE, _("Got %s signal"), "QUIT");
|
||||||
|
if(running)
|
||||||
running = false;
|
running = false;
|
||||||
|
else
|
||||||
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static RETSIGTYPE fatal_signal_square(int a)
|
static RETSIGTYPE fatal_signal_square(int a)
|
||||||
|
|
Loading…
Add table
Reference in a new issue