diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-12-28 15:06:01 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-12-28 15:06:01 +0000 |
commit | 095e90d45ec53e9b03a796504b0fb19a77a38241 (patch) | |
tree | 0c45d1931a25da0ac7d695c3e0897e97ef0447f9 /usr.bin/ssh/dispatch.h | |
parent | 4e830a709244c3b3be467cad0930856464ec7ef5 (diff) |
remove plen from the dispatch fn. it's no longer used.
Diffstat (limited to 'usr.bin/ssh/dispatch.h')
-rw-r--r-- | usr.bin/ssh/dispatch.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/dispatch.h b/usr.bin/ssh/dispatch.h index 127ec106711..78786b3ffc8 100644 --- a/usr.bin/ssh/dispatch.h +++ b/usr.bin/ssh/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 *); |