Use const char *.
authorjsing <jsing@openbsd.org>
Fri, 25 Apr 2014 04:02:04 +0000 (04:02 +0000)
committerjsing <jsing@openbsd.org>
Fri, 25 Apr 2014 04:02:04 +0000 (04:02 +0000)
Suggested by miod@

lib/libcrypto/ui/ui_lib.c
lib/libssl/src/crypto/ui/ui_lib.c

index c19d894..ee76e5e 100644 (file)
@@ -388,7 +388,7 @@ UI_dup_error_string(UI *ui, const char *text)
 char *
 UI_construct_prompt(UI *ui, const char *object_desc, const char *object_name)
 {
-       char *format = "Enter %s for %s:";
+       const char *format = "Enter %s for %s:";
        char *prompt;
 
        if (ui->meth->ui_construct_prompt)
index c19d894..ee76e5e 100644 (file)
@@ -388,7 +388,7 @@ UI_dup_error_string(UI *ui, const char *text)
 char *
 UI_construct_prompt(UI *ui, const char *object_desc, const char *object_name)
 {
-       char *format = "Enter %s for %s:";
+       const char *format = "Enter %s for %s:";
        char *prompt;
 
        if (ui->meth->ui_construct_prompt)