From fd4289ead113e4594a35907b2fbda7fdbd24bb5a Mon Sep 17 00:00:00 2001 From: sin Date: Thu, 9 Oct 2014 11:23:14 +0100 Subject: Use NSIG instead of _NSIG --- readpassphrase.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'readpassphrase.c') diff --git a/readpassphrase.c b/readpassphrase.c index 3f1f9bc..4baca34 100644 --- a/readpassphrase.c +++ b/readpassphrase.c @@ -42,7 +42,7 @@ # define _POSIX_VDISABLE VDISABLE #endif -static volatile sig_atomic_t signo[_NSIG]; +static volatile sig_atomic_t signo[NSIG]; static void handler(int); @@ -63,7 +63,7 @@ readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags) } restart: - for (i = 0; i < _NSIG; i++) + for (i = 0; i < NSIG; i++) signo[i] = 0; nr = -1; save_errno = 0; @@ -164,7 +164,7 @@ restart: * If we were interrupted by a signal, resend it to ourselves * now that we have restored the signal handlers. */ - for (i = 0; i < _NSIG; i++) { + for (i = 0; i < NSIG; i++) { if (signo[i]) { kill(getpid(), i); switch (i) { -- cgit v1.2.3