summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-09 02:23:10 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-09 02:23:10 +0000
commitb0407fc670012c2f299978ad9e971697437fd006 (patch)
treec5f6ced2d7e2039223f977acf3cd7b1b2f3c672f
parent31ca54aa86a90052f8fe73fda66c7f39fd5079bc (diff)
- (bal) Missing 'const' in readpass.h
-rw-r--r--ChangeLog3
-rw-r--r--readpass.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index fe8c4282..38376084 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -31,6 +31,7 @@
- more strict prototypes, include necessary headers
- use paths.h/pathnames.h decls
- size_t typecase to int -> u_long
+ - (bal) Missing 'const' in readpass.h
20010208
- (djm) Don't delete external askpass program in make uninstall target.
@@ -3684,4 +3685,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.705 2001/02/09 02:11:24 mouring Exp $
+$Id: ChangeLog,v 1.706 2001/02/09 02:23:10 mouring Exp $
diff --git a/readpass.h b/readpass.h
index d8da448a..38d11af6 100644
--- a/readpass.h
+++ b/readpass.h
@@ -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);