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/scard.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/scard.c')
-rw-r--r-- | usr.bin/ssh/scard.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/scard.c b/usr.bin/ssh/scard.c index ce548a75ff6..e2eaf795411 100644 --- a/usr.bin/ssh/scard.c +++ b/usr.bin/ssh/scard.c @@ -24,7 +24,7 @@ #ifdef SMARTCARD #include "includes.h" -RCSID("$OpenBSD: scard.c,v 1.26 2002/06/23 03:30:17 deraadt Exp $"); +RCSID("$OpenBSD: scard.c,v 1.27 2003/04/08 20:21:29 itojun Exp $"); #include <openssl/evp.h> #include <sectok.h> @@ -526,7 +526,7 @@ sc_put_key(Key *prv, const char *id) } if (!sectok_swOK(sw)) goto done; - log("cyberflex_load_rsa_priv done"); + logit("cyberflex_load_rsa_priv done"); key_fid[0] = 0x73; key_fid[1] = 0x68; if (cyberflex_load_rsa_pub(fd, cla, key_fid, len, elements[5], @@ -536,7 +536,7 @@ sc_put_key(Key *prv, const char *id) } if (!sectok_swOK(sw)) goto done; - log("cyberflex_load_rsa_pub done"); + logit("cyberflex_load_rsa_pub done"); status = 0; done: |