diff options
author | 2001-06-23 15:12:17 +0000 | |
---|---|---|
committer | 2001-06-23 15:12:17 +0000 | |
commit | fae73ca39db8778fbd881b5971d896922ed8bf76 (patch) | |
tree | a0ef435bb5abac50a55a93941614a1aa2cad1c96 /usr.bin/ssh/readpass.c | |
parent | document ll, depreciate q (diff) | |
download | wireguard-openbsd-fae73ca39db8778fbd881b5971d896922ed8bf76.tar.xz wireguard-openbsd-fae73ca39db8778fbd881b5971d896922ed8bf76.zip |
more strict prototypes. raise warning level in Makefile.inc. markus ok'ed
TODO; cleanup headers
Diffstat (limited to 'usr.bin/ssh/readpass.c')
-rw-r--r-- | usr.bin/ssh/readpass.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/readpass.c b/usr.bin/ssh/readpass.c index d059272e74b..05883dfcd28 100644 --- a/usr.bin/ssh/readpass.c +++ b/usr.bin/ssh/readpass.c @@ -32,7 +32,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: readpass.c,v 1.17 2001/05/06 17:52:07 mouring Exp $"); +RCSID("$OpenBSD: readpass.c,v 1.18 2001/06/23 15:12:19 itojun Exp $"); #include "xmalloc.h" #include "cli.h" @@ -42,7 +42,7 @@ RCSID("$OpenBSD: readpass.c,v 1.17 2001/05/06 17:52:07 mouring Exp $"); #include "atomicio.h" #include "ssh.h" -char * +static char * ssh_askpass(char *askpass, const char *msg) { pid_t pid; |