summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-06-18 14:40:08 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-06-18 14:40:08 +0200
commitabc7034f0d3833da588bd636ed71542f94d3995e (patch)
treeab224ebfb48d7d04529a952b8038ba6e8fc8988d /runtime
parentdc88ff72346ae3104caaa98bc94aaf4ef9882605 (diff)
downloadrsyslog-abc7034f0d3833da588bd636ed71542f94d3995e.tar.gz
rsyslog-abc7034f0d3833da588bd636ed71542f94d3995e.tar.xz
rsyslog-abc7034f0d3833da588bd636ed71542f94d3995e.zip
begun step-by-step guide for TLS protected syslog
Diffstat (limited to 'runtime')
-rw-r--r--runtime/nsd_gtls.c2
-rw-r--r--runtime/obj.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/nsd_gtls.c b/runtime/nsd_gtls.c
index 567701dc..f55361cc 100644
--- a/runtime/nsd_gtls.c
+++ b/runtime/nsd_gtls.c
@@ -485,7 +485,7 @@ finalize_it:
pGnuErr = gtlsStrerror(gnuRet);
errno = 0;
errmsg.LogError(NO_ERRCODE, "error adding our certificate. GnuTLS error %d, message: '%s', "
- "key: '%s', cert: '%s'\n", gnuRet, pGnuErr, certFile, keyFile);
+ "key: '%s', cert: '%s'\n", gnuRet, pGnuErr, keyFile, certFile);
free(pGnuErr);
}
RETiRet;
diff --git a/runtime/obj.c b/runtime/obj.c
index 312ed223..af59a955 100644
--- a/runtime/obj.c
+++ b/runtime/obj.c
@@ -1192,7 +1192,7 @@ ReleaseObj(char *srcFile, uchar *pObjName, uchar *pObjFile, interface_t *pIf)
objInfo_t *pObjInfo;
- dbgprintf("source file %s releasing object '%s', ifIsLoaded %d\n", srcFile, pObjName, pIf->ifIsLoaded);
+ /* dev debug only dbgprintf("source file %s releasing object '%s', ifIsLoaded %d\n", srcFile, pObjName, pIf->ifIsLoaded); */
if(pObjFile == NULL)
FINALIZE; /* if it is not a lodable module, we do not need to do anything... */