- djm@cvs.openbsd.org 2013/11/03 10:37:19
[roaming_common.c] fix a couple of function definitions foo() -> foo(void) (-Wold-style-definition)
This commit is contained in:
parent
0bd8f1519d
commit
ca67a7eaf8
|
@ -20,6 +20,10 @@
|
||||||
- markus@cvs.openbsd.org 2013/11/02 22:39:19
|
- markus@cvs.openbsd.org 2013/11/02 22:39:19
|
||||||
[ssh_config.5 sshd_config.5]
|
[ssh_config.5 sshd_config.5]
|
||||||
the default kex is now curve25519-sha256@libssh.org
|
the default kex is now curve25519-sha256@libssh.org
|
||||||
|
- djm@cvs.openbsd.org 2013/11/03 10:37:19
|
||||||
|
[roaming_common.c]
|
||||||
|
fix a couple of function definitions foo() -> foo(void)
|
||||||
|
(-Wold-style-definition)
|
||||||
|
|
||||||
20131103
|
20131103
|
||||||
- (dtucker) [openbsd-compat/bsd-misc.c] Include time.h for nanosleep.
|
- (dtucker) [openbsd-compat/bsd-misc.c] Include time.h for nanosleep.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: roaming_common.c,v 1.10 2013/07/12 00:19:59 djm Exp $ */
|
/* $OpenBSD: roaming_common.c,v 1.11 2013/11/03 10:37:19 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2004-2009 AppGate Network Security AB
|
* Copyright (c) 2004-2009 AppGate Network Security AB
|
||||||
*
|
*
|
||||||
|
@ -49,7 +49,7 @@ int roaming_enabled = 0;
|
||||||
int resume_in_progress = 0;
|
int resume_in_progress = 0;
|
||||||
|
|
||||||
int
|
int
|
||||||
get_snd_buf_size()
|
get_snd_buf_size(void)
|
||||||
{
|
{
|
||||||
int fd = packet_get_connection_out();
|
int fd = packet_get_connection_out();
|
||||||
int optval;
|
int optval;
|
||||||
|
@ -61,7 +61,7 @@ get_snd_buf_size()
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
get_recv_buf_size()
|
get_recv_buf_size(void)
|
||||||
{
|
{
|
||||||
int fd = packet_get_connection_in();
|
int fd = packet_get_connection_in();
|
||||||
int optval;
|
int optval;
|
||||||
|
|
Loading…
Reference in New Issue