diff options
author | 2003-04-08 20:21:28 +0000 | |
---|---|---|
committer | 2003-04-08 20:21:28 +0000 | |
commit | 7e56a8a60ec722a5f455b4ae9ceeb1ed1879c77a (patch) | |
tree | 4fa5113b9414d5d3d8016333d209cab2d6facefd /usr.bin/ssh/ssh-keygen.c | |
parent | easy sprintf in code we don't use (diff) | |
download | wireguard-openbsd-7e56a8a60ec722a5f455b4ae9ceeb1ed1879c77a.tar.xz wireguard-openbsd-7e56a8a60ec722a5f455b4ae9ceeb1ed1879c77a.zip |
rename log() into logit() to avoid name conflict. markus ok, from netbsd
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index c804ba4c1cc..7aa530bec7a 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keygen.c,v 1.102 2002/11/26 00:45:03 wcobb Exp $"); +RCSID("$OpenBSD: ssh-keygen.c,v 1.103 2003/04/08 20:21:29 itojun Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -411,7 +411,7 @@ do_upload(struct passwd *pw, const char *sc_reader_id) key_free(prv); if (ret < 0) exit(1); - log("loading key done"); + logit("loading key done"); exit(0); } |