diff options
author | Damien Miller <djm@mindrot.org> | 2002-01-22 13:17:30 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-01-22 13:17:30 +0100 |
commit | 630d6f4479df4084ef05ce233c11e66c68a98a4f (patch) | |
tree | 27dc26ac3fd5bb1131ca39187899dfe2494117c4 /dispatch.h | |
parent | - markus@cvs.openbsd.org 2001/12/28 14:50:54 (diff) | |
download | openssh-630d6f4479df4084ef05ce233c11e66c68a98a4f.tar.xz openssh-630d6f4479df4084ef05ce233c11e66c68a98a4f.zip |
- markus@cvs.openbsd.org 2001/12/28 15:06:00
[auth2.c auth2-chall.c channels.c channels.h clientloop.c dispatch.c dispatch.h kex.c kex.h serverloop.c ssh.c sshconnect2.c]
remove plen from the dispatch fn. it's no longer used.
Diffstat (limited to 'dispatch.h')
-rw-r--r-- | dispatch.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dispatch.h b/dispatch.h index 127ec1067..78786b3ff 100644 --- a/dispatch.h +++ b/dispatch.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dispatch.h,v 1.7 2001/12/20 22:50:24 djm Exp $ */ +/* $OpenBSD: dispatch.h,v 1.8 2001/12/28 15:06:00 markus Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -28,9 +28,9 @@ enum { DISPATCH_NONBLOCK }; -typedef void dispatch_fn(int, int, u_int32_t, void *); +typedef void dispatch_fn(int, u_int32_t, void *); void dispatch_init(dispatch_fn *); void dispatch_set(int, dispatch_fn *); void dispatch_run(int, int *, void *); -void dispatch_protocol_error(int, int, u_int32_t, void *); +void dispatch_protocol_error(int, u_int32_t, void *); |