summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2012-04-23 18:21:05 +1000
committerDamien Miller <djm@mindrot.org>2012-04-23 18:21:05 +1000
commitba77e1f67311fc76fe7ce460f7f03b6528383cbc (patch)
treeedec032515c845e4512054b3f182bbce72c66495
parent70b2d5550bd29c426414cca1d2ef9c2f6fbf5823 (diff)
- djm@cvs.openbsd.org 2012/04/23 08:18:17
[channels.c] fix function proto/source mismatch
-rw-r--r--ChangeLog6
-rw-r--r--channels.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e928ac4d..dedf2f33 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+20120423
+ - OpenBSD CVS Sync
+ - djm@cvs.openbsd.org 2012/04/23 08:18:17
+ [channels.c]
+ fix function proto/source mismatch
+
20120422
- OpenBSD CVS Sync
- djm@cvs.openbsd.org 2012/02/29 11:21:26
diff --git a/channels.c b/channels.c
index cacd2fe5..7791febd 100644
--- a/channels.c
+++ b/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
@@ -2134,7 +2134,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;