summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/scp.c
diff options
context:
space:
mode:
authorJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2001-12-05 03:56:40 +0000
committerJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2001-12-05 03:56:40 +0000
commit34846e18ad278194cad61532a02fee61ce65b14f (patch)
treea90955128e39af2a4e0113018b9fd16030d356c3 /usr.bin/ssh/scp.c
parent22b580431f589fd295d6a9a2e00ec811350de7e0 (diff)
make it compile with more strict prototype checking
Diffstat (limited to 'usr.bin/ssh/scp.c')
-rw-r--r--usr.bin/ssh/scp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c
index 999481ecc5c..159e4bb7a60 100644
--- a/usr.bin/ssh/scp.c
+++ b/usr.bin/ssh/scp.c
@@ -75,7 +75,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: scp.c,v 1.85 2001/10/01 08:06:28 markus Exp $");
+RCSID("$OpenBSD: scp.c,v 1.86 2001/12/05 03:56:39 itojun Exp $");
#include "xmalloc.h"
#include "atomicio.h"
@@ -895,7 +895,7 @@ screwup:
}
int
-response()
+response(void)
{
char ch, *cp, resp, rbuf[2048];
@@ -928,7 +928,7 @@ response()
}
void
-usage()
+usage(void)
{
(void) fprintf(stderr,
"usage: scp [-pqrvBC46] [-F config] [-S ssh] [-P port] [-c cipher] [-i identity]\n"