Fixed other warnings

SVN revision: 766
This commit is contained in:
Stefan Ritt 2004-02-16 15:50:54 +00:00
parent 9df3193aa9
commit dbab0f27ac

View File

@ -6,6 +6,9 @@
Contents: Web server program for Electronic Logbook ELOG Contents: Web server program for Electronic Logbook ELOG
$Log$ $Log$
Revision 1.249 2004/02/16 15:50:54 midas
Fixed other warnings
Revision 1.248 2004/02/16 15:05:56 midas Revision 1.248 2004/02/16 15:05:56 midas
Changed indentation Changed indentation
@ -15905,13 +15908,14 @@ BOOL _hup = FALSE;
void ctrlc_handler(int sig) void ctrlc_handler(int sig)
{ {
_abort = TRUE; if (sig)
_abort = TRUE;
} }
void hup_handler(int sig) void hup_handler(int sig)
{ {
if (sig)
_hup = TRUE; _hup = TRUE;
} }
/*------------------------------------------------------------------*/ /*------------------------------------------------------------------*/