mirror of git://anongit.mindrot.org/openssh.git
- djm@cvs.openbsd.org 2012/04/23 08:18:17
[channels.c] fix function proto/source mismatch
This commit is contained in:
parent
70b2d5550b
commit
ba77e1f673
|
@ -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
|
20120422
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
- djm@cvs.openbsd.org 2012/02/29 11:21:26
|
- djm@cvs.openbsd.org 2012/02/29 11:21:26
|
||||||
|
|
|
@ -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>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* 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
|
void
|
||||||
channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
|
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;
|
u_int n, sz, nfdset;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue