summaryrefslogtreecommitdiff
path: root/readpass.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-05-02 01:30:32 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-05-02 01:30:32 +0000
commit6d849315ff76bccb6cb89a2151c4068a4e5361b3 (patch)
tree4115c2318655e045ea20f29477d709e6764bc015 /readpass.c
parentaebd0b66fd4d800d56f802cf16df2ad19c263182 (diff)
- mouring@cvs.openbsd.org 2001/05/02 01:25:39
[readpass.c] Put the 'const' back into ssh_askpass() function. Pointed out by Mark Miller <markm@swoon.net>. OK Markus
Diffstat (limited to 'readpass.c')
-rw-r--r--readpass.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/readpass.c b/readpass.c
index b93eaba43..c1b9a7064 100644
--- a/readpass.c
+++ b/readpass.c
@@ -32,7 +32,7 @@
32 */ 32 */
33 33
34#include "includes.h" 34#include "includes.h"
35RCSID("$OpenBSD: readpass.c,v 1.15 2001/04/18 21:57:41 markus Exp $"); 35RCSID("$OpenBSD: readpass.c,v 1.16 2001/05/02 01:25:39 mouring Exp $");
36 36
37#include "xmalloc.h" 37#include "xmalloc.h"
38#include "cli.h" 38#include "cli.h"
@@ -43,7 +43,7 @@ RCSID("$OpenBSD: readpass.c,v 1.15 2001/04/18 21:57:41 markus Exp $");
43#include "ssh.h" 43#include "ssh.h"
44 44
45char * 45char *
46ssh_askpass(char *askpass, char *msg) 46ssh_askpass(char *askpass, const char *msg)
47{ 47{
48 pid_t pid; 48 pid_t pid;
49 size_t len; 49 size_t len;