mirror of git://anongit.mindrot.org/openssh.git
- (bal) CVS ID updates for readpass.c, readpass.h, cli.c, and cli.h
This commit is contained in:
parent
aafff9cc76
commit
f278613f5e
|
@ -4,6 +4,7 @@
|
||||||
Suggested by Jason Mader <jason@ncac.gwu.edu>
|
Suggested by Jason Mader <jason@ncac.gwu.edu>
|
||||||
- (bal) White Space and #ifdef sync with OpenBSD
|
- (bal) White Space and #ifdef sync with OpenBSD
|
||||||
- (bal) Add 'seed_rng()' to ssh-add.c
|
- (bal) Add 'seed_rng()' to ssh-add.c
|
||||||
|
- (bal) CVS ID updates for readpass.c, readpass.h, cli.c, and cli.h
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
- stevesk@cvs.openbsd.org 2001/05/05 13:42:52
|
- stevesk@cvs.openbsd.org 2001/05/05 13:42:52
|
||||||
[sftp.1 ssh-add.1 ssh-keygen.1]
|
[sftp.1 ssh-add.1 ssh-keygen.1]
|
||||||
|
@ -5353,4 +5354,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1203 2001/05/06 03:01:02 mouring Exp $
|
$Id: ChangeLog,v 1.1204 2001/05/06 18:01:43 mouring Exp $
|
||||||
|
|
4
cli.c
4
cli.c
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: cli.c,v 1.11 2001/03/06 00:33:04 deraadt Exp $ */
|
/* $OpenBSD: cli.c,v 1.12 2001/05/06 17:52:07 mouring Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: cli.c,v 1.11 2001/03/06 00:33:04 deraadt Exp $");
|
RCSID("$OpenBSD: cli.c,v 1.12 2001/05/06 17:52:07 mouring Exp $");
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
11
cli.h
11
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.
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* 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
|
#ifndef CLI_H
|
||||||
#define CLI_H
|
#define CLI_H
|
||||||
|
@ -35,9 +35,8 @@
|
||||||
* of response depending on arg. Tries to ensure that no other userland
|
* of response depending on arg. Tries to ensure that no other userland
|
||||||
* buffer is storing the response.
|
* buffer is storing the response.
|
||||||
*/
|
*/
|
||||||
char* cli_read_passphrase(const char* prompt, int from_stdin,
|
char* cli_read_passphrase(const char* prompt, int from_stdin, int echo_enable);
|
||||||
int echo_enable);
|
char* cli_prompt(char* prompt, int echo_enable);
|
||||||
char* cli_prompt(char* prompt, int echo_enable);
|
void cli_mesg(char* mesg);
|
||||||
void cli_mesg(char* mesg);
|
|
||||||
|
|
||||||
#endif /* CLI_H */
|
#endif /* CLI_H */
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: readpass.c,v 1.16 2001/05/02 01:25:39 mouring Exp $");
|
RCSID("$OpenBSD: readpass.c,v 1.17 2001/05/06 17:52:07 mouring Exp $");
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "cli.h"
|
#include "cli.h"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: readpass.h,v 1.2 2001/01/29 01:58:17 niklas Exp $ */
|
/* $OpenBSD: readpass.h,v 1.3 2001/05/06 17:52:08 mouring Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
|
|
Loading…
Reference in New Issue