aboutsummaryrefslogtreecommitdiffstats
path: root/common/signal.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2003-01-09 12:59:25 +0000
committerWerner Koch <[email protected]>2003-01-09 12:59:25 +0000
commitc13b76ca6a495cda6e51934a7788f48ca6f3bb0e (patch)
treed52174e8d500d7db90181bf71624d69d0c6836c5 /common/signal.c
parent* keygen.c (keygen_set_std_prefs): Warn when setting an IDEA preference (diff)
downloadgnupg-c13b76ca6a495cda6e51934a7788f48ca6f3bb0e.tar.gz
gnupg-c13b76ca6a495cda6e51934a7788f48ca6f3bb0e.zip
Updated from latest NewPG project
Diffstat (limited to '')
-rw-r--r--common/signal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/signal.c b/common/signal.c
index b150fa90a..dc026c10f 100644
--- a/common/signal.c
+++ b/common/signal.c
@@ -30,8 +30,8 @@
#include "util.h"
-static volatile int caught_fatal_sig = 0;
-static volatile int caught_sigusr1 = 0;
+static volatile int caught_fatal_sig;
+static volatile int caught_sigusr1;
static void (*cleanup_fnc)(void);