summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/cli.h
diff options
context:
space:
mode:
authormouring <mouring@openbsd.org>2001-05-06 17:52:07 +0000
committermouring <mouring@openbsd.org>2001-05-06 17:52:07 +0000
commit30a7db8ba547ed636568b05f5dc994ba859a267d (patch)
tree0e9b8a0b68fb87a4937742df4ae54257d2e6493c /usr.bin/ssh/cli.h
parentincrease version since we've removed -b; per fgsch@'s suggestion (diff)
downloadwireguard-openbsd-30a7db8ba547ed636568b05f5dc994ba859a267d.tar.xz
wireguard-openbsd-30a7db8ba547ed636568b05f5dc994ba859a267d.zip
Use const for 'prompt'. Brought over from portable tree.
Diffstat (limited to 'usr.bin/ssh/cli.h')
-rw-r--r--usr.bin/ssh/cli.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/cli.h b/usr.bin/ssh/cli.h
index 6f57c9b8ad0..59d93549919 100644
--- a/usr.bin/ssh/cli.h
+++ b/usr.bin/ssh/cli.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cli.h,v 1.4 2001/03/01 03:38:33 deraadt Exp $ */
+/* $OpenBSD: cli.h,v 1.5 2001/05/06 17:52:07 mouring Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -24,7 +24,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $OpenBSD: cli.h,v 1.4 2001/03/01 03:38:33 deraadt Exp $ */
+/* $OpenBSD: cli.h,v 1.5 2001/05/06 17:52:07 mouring Exp $ */
#ifndef CLI_H
#define CLI_H
@@ -35,8 +35,8 @@
* of response depending on arg. Tries to ensure that no other userland
* buffer is storing the response.
*/
-char * cli_read_passphrase(char * prompt, int from_stdin, int echo_enable);
-char * cli_prompt(char * prompt, int echo_enable);
+char* cli_read_passphrase(const char* prompt, int from_stdin, int echo_enable);
+char* cli_prompt(char* prompt, int echo_enable);
void cli_mesg(char * mesg);
#endif /* CLI_H */