diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-05 10:11:43 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-05 10:11:43 +0000 |
commit | f080f6fd4686613e9d5728e0c92015fbc1e62c1b (patch) | |
tree | 525f66825aaf197547479dc6116911bf1491446a /sbin | |
parent | 229216fe48d00596e028766e133fb898e81a9850 (diff) |
log_error() cleanup
Diffstat (limited to 'sbin')
-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 */ |