]> andersk Git - openssh.git/blobdiff - dispatch.c
- (tim) [regress/sftp-cmds.sh] s/cd/lcd/ in lls test. Reported by
[openssh.git] / dispatch.c
index 3f96c726bc736eda48e89d8976474083154f4357..d6b63be4b7ff34f8d6d60517787cbea673f409ff 100644 (file)
@@ -1,3 +1,4 @@
+/* $OpenBSD: dispatch.c,v 1.21 2006/08/03 03:34:42 deraadt Exp $ */
 /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  *
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
+
 #include "includes.h"
 
+#include <sys/types.h>
+
+#include <signal.h>
+#include <stdarg.h>
+
 #include "ssh1.h"
 #include "ssh2.h"
 #include "log.h"
@@ -75,7 +82,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;
This page took 0.121764 seconds and 4 git commands to generate.