mirror of git://anongit.mindrot.org/openssh.git
- markus@cvs.openbsd.org 2001/04/23 22:14:13
[ssh-keygen.c] remove debug
This commit is contained in:
parent
46c264f2ae
commit
3035860f24
|
@ -3,6 +3,9 @@
|
|||
- markus@cvs.openbsd.org 2001/04/23 21:57:07
|
||||
[ssh-keygen.1 ssh-keygen.c]
|
||||
allow public key for -e, too
|
||||
- markus@cvs.openbsd.org 2001/04/23 22:14:13
|
||||
[ssh-keygen.c]
|
||||
remove debug
|
||||
|
||||
20010424
|
||||
- OpenBSD CVS Sync
|
||||
|
@ -5242,4 +5245,4 @@
|
|||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.1166 2001/04/24 16:56:58 mouring Exp $
|
||||
$Id: ChangeLog,v 1.1167 2001/04/24 16:59:28 mouring Exp $
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: ssh-keygen.c,v 1.59 2001/04/23 21:57:07 markus Exp $");
|
||||
RCSID("$OpenBSD: ssh-keygen.c,v 1.60 2001/04/23 22:14:13 markus Exp $");
|
||||
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/pem.h>
|
||||
|
@ -298,12 +298,12 @@ do_convert_from_ssh2(struct passwd *pw)
|
|||
strstr(line, ": ") != NULL) {
|
||||
if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
|
||||
private = 1;
|
||||
fprintf(stderr, "ignore: %s", line);
|
||||
/* fprintf(stderr, "ignore: %s", line); */
|
||||
continue;
|
||||
}
|
||||
if (escaped) {
|
||||
escaped--;
|
||||
fprintf(stderr, "escaped: %s", line);
|
||||
/* fprintf(stderr, "escaped: %s", line); */
|
||||
continue;
|
||||
}
|
||||
*p = '\0';
|
||||
|
|
Loading…
Reference in New Issue