diff options
author | 2001-06-05 10:11:42 +0000 | |
---|---|---|
committer | 2001-06-05 10:11:42 +0000 | |
commit | cf4f6f5312ad2cb95e759dc70d92c80743d9fb30 (patch) | |
tree | c980ff9599d0f63fb755e6ec427af17d6ee122ac | |
parent | Don't spawn unecessary subshell in the "make build" target, a.k.a hin-is-lazy (diff) | |
download | wireguard-openbsd-cf4f6f5312ad2cb95e759dc70d92c80743d9fb30.tar.xz wireguard-openbsd-cf4f6f5312ad2cb95e759dc70d92c80743d9fb30.zip |
log_error() cleanup
-rw-r--r-- | sbin/isakmpd/x509.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/isakmpd/x509.c b/sbin/isakmpd/x509.c index d02acbd16f7..2bec8133574 100644 --- a/sbin/isakmpd/x509.c +++ b/sbin/isakmpd/x509.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509.c,v 1.53 2001/06/05 06:51:05 angelos Exp $ */ +/* $OpenBSD: x509.c,v 1.54 2001/06/05 10:11:42 angelos Exp $ */ /* $EOM: x509.c,v 1.54 2001/01/16 18:42:16 ho Exp $ */ /* @@ -1410,14 +1410,14 @@ x509_from_printable (char *cert) if (ret == -1) { free (buf); - log_error ("x509_from_printable: badly formatted cert"); + log_print ("x509_from_printable: badly formatted cert"); return 0; } foo = x509_cert_get (buf, plen); free (buf); if (!foo) - log_error ("x509_from_printable: could not retrieve certificate"); + log_print ("x509_from_printable: could not retrieve certificate"); return foo; } #endif /* USE_X509 */ |