summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-11-03 18:48:40 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2009-11-03 18:48:40 +0100
commitb41e0d51f54a89f489bbf1c1bf5f85d576ae4049 (patch)
tree9c6b7b1103c70f27818180bb586095c6f9f05173 /tools
parentb1db196953713dd09c499a3edf81347bd903c19e (diff)
downloadrsyslog-b41e0d51f54a89f489bbf1c1bf5f85d576ae4049.tar.gz
rsyslog-b41e0d51f54a89f489bbf1c1bf5f85d576ae4049.tar.xz
rsyslog-b41e0d51f54a89f489bbf1c1bf5f85d576ae4049.zip
some more cleanup along the way
... getting the module structure a bit cleaner ;)
Diffstat (limited to 'tools')
-rw-r--r--tools/syslogd.c30
1 files changed, 1 insertions, 29 deletions
diff --git a/tools/syslogd.c b/tools/syslogd.c
index 3fb54467..aeab292c 100644
--- a/tools/syslogd.c
+++ b/tools/syslogd.c
@@ -286,34 +286,6 @@ static int iMainMsgQueueDeqtWinFromHr = 0; /* hour begin of time frame when qu
static int iMainMsgQueueDeqtWinToHr = 25; /* hour begin of time frame when queue is to be dequeued */
-/* support for simple textual representation of FIOP names
- * rgerhards, 2005-09-27
- */
-char*
-getFIOPName(unsigned iFIOP)
-{
- char *pRet;
- switch(iFIOP) {
- case FIOP_CONTAINS:
- pRet = "contains";
- break;
- case FIOP_ISEQUAL:
- pRet = "isequal";
- break;
- case FIOP_STARTSWITH:
- pRet = "startswith";
- break;
- case FIOP_REGEX:
- pRet = "regex";
- break;
- default:
- pRet = "NOP";
- break;
- }
- return pRet;
-}
-
-
/* Reset config variables to default values.
* rgerhards, 2007-07-17
*/
@@ -382,7 +354,7 @@ static int usage(void)
fprintf(stderr, "usage: rsyslogd [-c<version>] [-46AdnqQvwx] [-l<hostlist>] [-s<domainlist>]\n"
" [-f<conffile>] [-i<pidfile>] [-N<level>] [-M<module load path>]\n"
" [-u<number>]\n"
- "To run rsyslogd in native mode, use \"rsyslogd -c3 <other options>\"\n\n"
+ "To run rsyslogd in native mode, use \"rsyslogd -c5 <other options>\"\n\n"
"For further information see http://www.rsyslog.com/doc\n");
exit(1); /* "good" exit - done to terminate usage() */
}