summaryrefslogtreecommitdiff
path: root/dispatch.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-04-23 12:08:37 +1000
committerDamien Miller <djm@mindrot.org>2006-04-23 12:08:37 +1000
commit97c91f688fa8f8d67bbe2e0aa0feb912fc3c00ef (patch)
tree2fdcbfd35755abb791bbc8e899686b32e838a855 /dispatch.c
parent58629fad824ebe0a10974930778beff455f41aea (diff)
downloadopenssh-git-97c91f688fa8f8d67bbe2e0aa0feb912fc3c00ef.tar.gz
- djm@cvs.openbsd.org 2006/04/20 09:27:09
[auth.h clientloop.c dispatch.c dispatch.h kex.h] replace the last non-sig_atomic_t flag used in a signal handler with a sig_atomic_t, unfortunately with some knock-on effects in other (non- signal) contexts in which it is used; ok markus@
Diffstat (limited to 'dispatch.c')
-rw-r--r--dispatch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dispatch.c b/dispatch.c
index eac07b1b..4f965a62 100644
--- a/dispatch.c
+++ b/dispatch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dispatch.c,v 1.18 2006/03/25 13:17:01 djm Exp $ */
+/* $OpenBSD: dispatch.c,v 1.19 2006/04/20 09:27:09 djm Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@@ -76,7 +76,7 @@ dispatch_set(int type, dispatch_fn *fn)
dispatch[type] = fn;
}
void
-dispatch_run(int mode, int *done, void *ctxt)
+dispatch_run(int mode, volatile sig_atomic_t *done, void *ctxt)
{
for (;;) {
int type;