From 182ae6f38814eab2c0b49801315da34b052ee1b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sat, 30 Apr 2005 14:10:18 +0000 Subject: [PATCH] Include . (UI_UTIL_read_pw_string): make the prompt argument const. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15024 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/des/ui.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/des/ui.c b/lib/des/ui.c index 09a82dca6..c15b153ae 100644 --- a/lib/des/ui.c +++ b/lib/des/ui.c @@ -43,6 +43,7 @@ RCSID("$Id$"); #include #include +#include static sig_atomic_t intr_flag; @@ -126,7 +127,7 @@ read_string(const char *preprompt, const char *prompt, } int -UI_UTIL_read_pw_string(char *buf, int length, char *prompt, int verify) +UI_UTIL_read_pw_string(char *buf, int length, const char *prompt, int verify) { int ret;