summaryrefslogtreecommitdiffstats
path: root/runtime/nsd_ptcp.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-05-19 09:43:37 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-05-19 09:43:37 +0200
commit48684ceac5d57f2c3bc9e8afce98d2026ab51958 (patch)
tree76265ca131f1c8a682c703b5acd34d117c253560 /runtime/nsd_ptcp.c
parentedf41396efc9bcbbc333651771df49d3ec68cb4d (diff)
downloadrsyslog-48684ceac5d57f2c3bc9e8afce98d2026ab51958.tar.gz
rsyslog-48684ceac5d57f2c3bc9e8afce98d2026ab51958.tar.xz
rsyslog-48684ceac5d57f2c3bc9e8afce98d2026ab51958.zip
improved error messages and corrected fingerprint format
Diffstat (limited to 'runtime/nsd_ptcp.c')
-rw-r--r--runtime/nsd_ptcp.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/runtime/nsd_ptcp.c b/runtime/nsd_ptcp.c
index ae835aed..6702e118 100644
--- a/runtime/nsd_ptcp.c
+++ b/runtime/nsd_ptcp.c
@@ -119,8 +119,11 @@ static rsRetVal
SetMode(nsd_t __attribute__((unused)) *pNsd, int mode)
{
DEFiRet;
- if(mode != 0)
- ABORT_FINALIZE(RS_RET_INVAID_DRVR_MODE);
+ if(mode != 0) {
+ errmsg.LogError(NO_ERRCODE, "error: driver mode %d not supported by "
+ "ptcp netstream driver", mode);
+ ABORT_FINALIZE(RS_RET_INVALID_DRVR_MODE);
+ }
finalize_it:
RETiRet;
}
@@ -140,7 +143,7 @@ SetAuthMode(nsd_t __attribute__((unused)) *pNsd, uchar *mode)
{
DEFiRet;
if(mode != NULL && strcasecmp((char*)mode, "anon")) {
- errmsg.LogError(NO_ERRCODE, "authentication mode '%s' not supported by "
+ errmsg.LogError(NO_ERRCODE, "error: authentication mode '%s' not supported by "
"ptcp netstream driver", mode);
ABORT_FINALIZE(RS_RET_VALUE_NOT_SUPPORTED);
}
@@ -158,7 +161,7 @@ static rsRetVal
AddPermFingerprint(nsd_t __attribute__((unused)) *pNsd, uchar __attribute__((unused)) *pszFingerprint)
{
errmsg.LogError(NO_ERRCODE, "fingerprint authentication not supported by "
- "ptcp netstream driver - ignored");
+ "ptcp netstream driver");
return RS_RET_VALUE_NOT_IN_THIS_MODE;
}