diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2012-04-23 08:18:18 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2012-04-23 08:18:18 +0000 |
commit | 799ac7ff7d33af37a298b666e4c6847e0e9073d4 (patch) | |
tree | 5bcbe84d7186a8284465ec837f17740083432330 | |
parent | e3900c767b5c73fb680e29118d67732b1c7e66f8 (diff) |
fix function proto/source mismatch
-rw-r--r-- | usr.bin/ssh/channels.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c index 05cb66a8e55..635e4833cff 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -1,4 +1,4 @@ -/* $OpenBSD: channels.c,v 1.317 2012/04/11 13:16:19 djm Exp $ */ +/* $OpenBSD: channels.c,v 1.318 2012/04/23 08:18:17 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -2112,7 +2112,7 @@ channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset, */ void channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp, - u_int *nallocp, int *minwait_secs, int rekeying) + u_int *nallocp, time_t *minwait_secs, int rekeying) { u_int n, sz, nfdset; |