- 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
This commit is contained in:
parent
aebd0b66fd
commit
6d849315ff
|
@ -1,3 +1,10 @@
|
||||||
|
20010502
|
||||||
|
- OpenBSD CVS Sync
|
||||||
|
- 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
|
||||||
|
|
||||||
20010501
|
20010501
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
- markus@cvs.openbsd.org 2001/04/30 11:18:52
|
- markus@cvs.openbsd.org 2001/04/30 11:18:52
|
||||||
|
@ -5295,4 +5302,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1188 2001/04/30 23:09:45 mouring Exp $
|
$Id: ChangeLog,v 1.1189 2001/05/02 01:30:32 mouring Exp $
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: readpass.c,v 1.15 2001/04/18 21:57:41 markus Exp $");
|
RCSID("$OpenBSD: readpass.c,v 1.16 2001/05/02 01:25:39 mouring Exp $");
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "cli.h"
|
#include "cli.h"
|
||||||
|
@ -43,7 +43,7 @@ RCSID("$OpenBSD: readpass.c,v 1.15 2001/04/18 21:57:41 markus Exp $");
|
||||||
#include "ssh.h"
|
#include "ssh.h"
|
||||||
|
|
||||||
char *
|
char *
|
||||||
ssh_askpass(char *askpass, char *msg)
|
ssh_askpass(char *askpass, const char *msg)
|
||||||
{
|
{
|
||||||
pid_t pid;
|
pid_t pid;
|
||||||
size_t len;
|
size_t len;
|
||||||
|
|
Loading…
Reference in New Issue