diff options
author | Damien Miller <djm@mindrot.org> | 2013-11-03 23:05:17 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-11-03 23:05:17 +0100 |
commit | ca67a7eaf8766499ba67801d0be8cdaa550b9a50 (patch) | |
tree | 505c00e650583338c1e83c0da978a814cc89899c /roaming_common.c | |
parent | - markus@cvs.openbsd.org 2013/11/02 22:39:19 (diff) | |
download | openssh-ca67a7eaf8766499ba67801d0be8cdaa550b9a50.tar.xz openssh-ca67a7eaf8766499ba67801d0be8cdaa550b9a50.zip |
- 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)
Diffstat (limited to 'roaming_common.c')
-rw-r--r-- | roaming_common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roaming_common.c b/roaming_common.c index 50d6177d0..86b3372ef 100644 --- a/roaming_common.c +++ b/roaming_common.c @@ -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 * @@ -49,7 +49,7 @@ int roaming_enabled = 0; int resume_in_progress = 0; int -get_snd_buf_size() +get_snd_buf_size(void) { int fd = packet_get_connection_out(); int optval; @@ -61,7 +61,7 @@ get_snd_buf_size() } int -get_recv_buf_size() +get_recv_buf_size(void) { int fd = packet_get_connection_in(); int optval; |