[ssh-keygen.c]
     remove debug
This commit is contained in:
Ben Lindstrom 2001-04-24 16:59:28 +00:00
parent 46c264f2ae
commit 3035860f24
2 changed files with 7 additions and 4 deletions

View File

@ -3,6 +3,9 @@
- markus@cvs.openbsd.org 2001/04/23 21:57:07 - markus@cvs.openbsd.org 2001/04/23 21:57:07
[ssh-keygen.1 ssh-keygen.c] [ssh-keygen.1 ssh-keygen.c]
allow public key for -e, too allow public key for -e, too
- markus@cvs.openbsd.org 2001/04/23 22:14:13
[ssh-keygen.c]
remove debug
20010424 20010424
- OpenBSD CVS Sync - OpenBSD CVS Sync
@ -5242,4 +5245,4 @@
- Wrote replacements for strlcpy and mkdtemp - Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1 - 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 $

View File

@ -12,7 +12,7 @@
*/ */
#include "includes.h" #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/evp.h>
#include <openssl/pem.h> #include <openssl/pem.h>
@ -298,12 +298,12 @@ do_convert_from_ssh2(struct passwd *pw)
strstr(line, ": ") != NULL) { strstr(line, ": ") != NULL) {
if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL) if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
private = 1; private = 1;
fprintf(stderr, "ignore: %s", line); /* fprintf(stderr, "ignore: %s", line); */
continue; continue;
} }
if (escaped) { if (escaped) {
escaped--; escaped--;
fprintf(stderr, "escaped: %s", line); /* fprintf(stderr, "escaped: %s", line); */
continue; continue;
} }
*p = '\0'; *p = '\0';