From d13d58e31ac54f9b283fe3ec100f31030e050fb4 Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Mon, 3 Jun 2002 11:36:56 +0000 Subject: sig_atomic_t type must also be volatile --- src/lib/libcrypto/ui/ui_openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/libcrypto/ui/ui_openssl.c') diff --git a/src/lib/libcrypto/ui/ui_openssl.c b/src/lib/libcrypto/ui/ui_openssl.c index 4e12165410..821dd29eaa 100644 --- a/src/lib/libcrypto/ui/ui_openssl.c +++ b/src/lib/libcrypto/ui/ui_openssl.c @@ -378,7 +378,7 @@ static void read_till_nl(FILE *in) } while (strchr(buf,'\n') == NULL); } -static sig_atomic_t intr_signal; +static volatile sig_atomic_t intr_signal; static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl) { -- cgit v1.2.3-55-g6feb