diff options
author | 2002-06-03 11:36:56 +0000 | |
---|---|---|
committer | 2002-06-03 11:36:56 +0000 | |
commit | ab8d4a1ff5124d1f61bca6cad588202327eec4e2 (patch) | |
tree | aa93dd683940d6adc19d3083a4e570a31a29324a /lib/libssl/src/crypto/ui/ui_openssl.c | |
parent | use issetugid() instead of uid/gid comparisons; from drahn (diff) | |
download | wireguard-openbsd-ab8d4a1ff5124d1f61bca6cad588202327eec4e2.tar.xz wireguard-openbsd-ab8d4a1ff5124d1f61bca6cad588202327eec4e2.zip |
sig_atomic_t type must also be volatile
Diffstat (limited to 'lib/libssl/src/crypto/ui/ui_openssl.c')
-rw-r--r-- | lib/libssl/src/crypto/ui/ui_openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/ui/ui_openssl.c b/lib/libssl/src/crypto/ui/ui_openssl.c index 4e121654101..821dd29eaaf 100644 --- a/lib/libssl/src/crypto/ui/ui_openssl.c +++ b/lib/libssl/src/crypto/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) { |