[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] LOG_ERR is for when you"re planning to die.
Update of /home2/or/cvsroot/tor/src/common
In directory moria.mit.edu:/home2/arma/work/onion/cvs/tor/src/common
Modified Files:
tortls.c
Log Message:
LOG_ERR is for when you're planning to die.
Index: tortls.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/common/tortls.c,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -r1.91 -r1.92
--- tortls.c 23 Apr 2005 14:26:02 -0000 1.91
+++ tortls.c 23 Apr 2005 14:34:41 -0000 1.92
@@ -850,8 +850,8 @@
{
if (ERR_peek_error() == 0)
return;
- log_fn(LOG_ERR, "Unhandled OpenSSL errors found at %s:%d: ",
+ log_fn(LOG_WARN, "Unhandled OpenSSL errors found at %s:%d: ",
fname, line);
- tls_log_errors(LOG_ERR, NULL);
+ tls_log_errors(LOG_WARN, NULL);
}