1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-07-02 02:48:57 +02:00

* signal.c (got_fatal_signal): Don't write the Nul to stderr.

Reported by David Hollenberg.
This commit is contained in:
Werner Koch 2002-05-21 05:33:17 +00:00
parent 91f05595cc
commit 529e037c43
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-05-21 Werner Koch <wk@gnupg.org>
* signal.c (got_fatal_signal): Don't write the Nul to stderr.
Reported by David Hollenberg.
2002-05-18 David Shaw <dshaw@jabberwocky.com>
* main.h, g10.c (main), revoke.c (gen_desig_revoke): Generate a

View File

@ -94,7 +94,7 @@ got_fatal_signal( int sig )
s = log_get_name(); if( s ) write(2, s, strlen(s) );
write(2, ": ", 2 );
s = get_signal_name(sig); write(2, s, strlen(s) );
write(2, " caught ... exiting\n", 21 );
write(2, " caught ... exiting\n", 20 );
/* reset action to default action and raise signal again */
init_one_signal (sig, SIG_DFL, 0);