diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-11-27 18:04:21 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-11-27 18:04:21 +0000 |
commit | 9682d8e16b84945405b2388fbc1ade4bd53999a9 (patch) | |
tree | adcedf45674ca516de1e19f8383735a832d9460a /syslogd.c | |
parent | a63733a27752be4e12fb612a5b3f79f8a44b2339 (diff) | |
download | rsyslog-9682d8e16b84945405b2388fbc1ade4bd53999a9.tar.gz rsyslog-9682d8e16b84945405b2388fbc1ade4bd53999a9.tar.bz2 rsyslog-9682d8e16b84945405b2388fbc1ade4bd53999a9.zip |
cosmetic changes - no code change
Diffstat (limited to 'syslogd.c')
-rw-r--r-- | syslogd.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -319,7 +319,7 @@ static uchar *ConfFile = (uchar*) _PATH_LOGCONF; /* read-only after startup */ static char *PidFile = _PATH_LOGPID; /* read-only after startup */ static uchar *pModDir = NULL; /* read-only after startup */ -char ctty[] = _PATH_CONSOLE; /* this is read-only */ +char ctty[] = _PATH_CONSOLE; /* this is read-only; used by omfile -- TODO: remove that dependency */ static pid_t myPid; /* our pid for use in self-generated messages, e.g. on startup */ /* mypid is read-only after the initial fork() */ @@ -2326,8 +2326,7 @@ int shouldProcessThisMessage(selector_t *f, msg_t *pMsg) iRet = 1; } else { assert(f->f_filter_type == FILTER_PROP); /* assert() just in case... */ - pszPropVal = MsgGetProp(pMsg, NULL, - f->f_filterData.prop.pCSPropName, &pbMustBeFreed); + pszPropVal = MsgGetProp(pMsg, NULL, f->f_filterData.prop.pCSPropName, &pbMustBeFreed); /* Now do the compares (short list currently ;)) */ switch(f->f_filterData.prop.operation ) { |