diff options
author | Jeremy Allison <jra@samba.org> | 2003-10-01 21:17:46 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-10-01 21:17:46 +0000 |
commit | b8092fbf99d01783110566b51dfaf26d4802f403 (patch) | |
tree | 0a481582d6effcdde93bbf3ad6f1cf233729a48f | |
parent | 73953efac3e219e67d127e31e965756d8fa46104 (diff) | |
download | samba-b8092fbf99d01783110566b51dfaf26d4802f403.tar.gz samba-b8092fbf99d01783110566b51dfaf26d4802f403.tar.bz2 samba-b8092fbf99d01783110566b51dfaf26d4802f403.zip |
Fixed silly typo checking for signal_handler not signal.
Jeremy.
(This used to be commit 202d4e46527993d359df7cd04fb611c22cc920c3)
-rw-r--r-- | source3/lib/getsmbpass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/getsmbpass.c b/source3/lib/getsmbpass.c index 93449b004d..27cd5e6dfa 100644 --- a/source3/lib/getsmbpass.c +++ b/source3/lib/getsmbpass.c @@ -166,7 +166,7 @@ char *getsmbpass(const char *prompt) printf("\n"); - if (gotintr_sig) { + if (gotintr) { printf("Interupted by signal.\n"); fflush(stdout); exit(1); |