diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/stpd/ChangeLog | 5 | ||||
-rw-r--r-- | runtime/stpd/librelay.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/runtime/stpd/ChangeLog b/runtime/stpd/ChangeLog index cf17d5e1..a57e5a29 100644 --- a/runtime/stpd/ChangeLog +++ b/runtime/stpd/ChangeLog @@ -1,5 +1,10 @@ 2005-08-24 Martin Hunt <hunt@redhat.com> + * librelay.c (sigproc): Removed the "Exiting..." + message for now. + +2005-08-24 Martin Hunt <hunt@redhat.com> + * librelay.c (sigproc): Reestablish signal handler so impatient people don't hit ^C twice and terminate the program before it saves the data and removes the module. diff --git a/runtime/stpd/librelay.c b/runtime/stpd/librelay.c index 7191c0a5..1bdc4814 100644 --- a/runtime/stpd/librelay.c +++ b/runtime/stpd/librelay.c @@ -592,7 +592,7 @@ static void sigproc(int signum __attribute__((unused))) { signal(SIGINT, sigproc); signal(SIGTERM, sigproc); - fprintf(stderr, "Exiting...\n"); + //fprintf(stderr, "Exiting...\n"); send_request(STP_EXIT, NULL, 0); } |