summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/readpass.h
diff options
context:
space:
mode:
authormouring <mouring@cvs.openbsd.org>2001-05-06 17:52:09 +0000
committermouring <mouring@cvs.openbsd.org>2001-05-06 17:52:09 +0000
commit1d21b5bba56295c44dad8da83fac136a3ab3c50c (patch)
tree74dd15ca51386003deb798d1a974a21e115e778b /usr.bin/ssh/readpass.h
parent5523e987d33d01fc8867b7e73ab4072ef3c23ded (diff)
Use const for 'prompt'. Brought over from portable tree.
Diffstat (limited to 'usr.bin/ssh/readpass.h')
-rw-r--r--usr.bin/ssh/readpass.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/readpass.h b/usr.bin/ssh/readpass.h
index d8da448a7a7..55ed294da76 100644
--- a/usr.bin/ssh/readpass.h
+++ b/usr.bin/ssh/readpass.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: readpass.h,v 1.2 2001/01/29 01:58:17 niklas Exp $ */
+/* $OpenBSD: readpass.h,v 1.3 2001/05/06 17:52:08 mouring Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -17,4 +17,4 @@
* passphrase (allocated with xmalloc). Exits if EOF is encountered. If
* from_stdin is true, the passphrase will be read from stdin instead.
*/
-char *read_passphrase(char *prompt, int from_stdin);
+char *read_passphrase(const char *prompt, int from_stdin);