diff options
author | mouring <mouring@cvs.openbsd.org> | 2001-05-02 01:25:40 +0000 |
---|---|---|
committer | mouring <mouring@cvs.openbsd.org> | 2001-05-02 01:25:40 +0000 |
commit | 661c584c89de9469412969ba43e5d3c86d6107fa (patch) | |
tree | 592bc5039a512d8ceaf6813cdcac5780eccce6fb | |
parent | 51b96b6f7b8494987b1ca606ff6cb32e1680873e (diff) |
Put the 'const' back into ssh_askpass() function. Pointed out
by Mark Miller <markm@swoon.net>. OK Markus
-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 b5f59710a9d..71085973b95 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.15 2001/04/18 21:57:41 markus Exp $"); +RCSID("$OpenBSD: readpass.c,v 1.16 2001/05/02 01:25:39 mouring Exp $"); #include "xmalloc.h" #include "cli.h" @@ -43,7 +43,7 @@ RCSID("$OpenBSD: readpass.c,v 1.15 2001/04/18 21:57:41 markus Exp $"); #include "ssh.h" char * -ssh_askpass(char *askpass, char *msg) +ssh_askpass(char *askpass, const char *msg) { pid_t pid; size_t len; |