From aeef9bbe727d80c5882cc0a883b8dfd5df461f10 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Wed, 2 Jul 2008 11:56:54 +0200 Subject: bugfix: machine certificate was required for client even in TLS anon mode Reference: http://bugzilla.adiscon.com/show_bug.cgi?id=85 The fix also slightly improves performance by not storing certificates in client sessions when there is no need to do so. --- tools/syslogd.c | 1 - 1 file changed, 1 deletion(-) (limited to 'tools') diff --git a/tools/syslogd.c b/tools/syslogd.c index b21988ab..dda605a8 100644 --- a/tools/syslogd.c +++ b/tools/syslogd.c @@ -898,7 +898,6 @@ logmsgInternal(int iErr, int pri, uchar *msg, int flags) if(iErr == NO_ERRCODE) { MsgSetTAG(pMsg, "rsyslogd:"); } else { -dbgprintf("iErr %d\n", iErr); snprintf((char*)pszTag, sizeof(pszTag), "rsyslogd%d:", iErr); pszTag[32] = '\0'; /* just to make sure... */ MsgSetTAG(pMsg, (char*)pszTag); -- cgit