diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-12-20 13:23:08 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-12-20 13:23:08 +0000 |
commit | a5ac2e420e6f58f2cad5123ea674b0da5c016aea (patch) | |
tree | c5dcd1b00c0c1c1a85b2e9cd596bdd0b6086b9d2 /syslogd.c | |
parent | 66099b596385df2de3f536d230edc59ebcf76daf (diff) | |
download | rsyslog-a5ac2e420e6f58f2cad5123ea674b0da5c016aea.tar.gz rsyslog-a5ac2e420e6f58f2cad5123ea674b0da5c016aea.tar.bz2 rsyslog-a5ac2e420e6f58f2cad5123ea674b0da5c016aea.zip |
implemented $AddUnixListenSocket config directive
Diffstat (limited to 'syslogd.c')
-rw-r--r-- | syslogd.c | 17 |
1 files changed, 1 insertions, 16 deletions
@@ -6091,7 +6091,7 @@ int main(int argc, char **argv) /* END core initializations */ - while ((ch = getopt(argc, argv, "46Aa:c:dehi:f:g:l:m:nop:qQr::s:t:u:vwx")) != EOF) { + while ((ch = getopt(argc, argv, "46Ac:dehi:f:g:l:m:nqQr::s:t:u:vwx")) != EOF) { switch((char)ch) { case '4': family = PF_INET; @@ -6102,21 +6102,6 @@ int main(int argc, char **argv) case 'A': send_to_all++; break; -#if 0 - case 'a': - if (nfunix < MAXFUNIX) - if(*optarg == ':') { - funixParseHost[nfunix] = 1; - funixn[nfunix++] = optarg+1; - } - else { - funixParseHost[nfunix] = 0; - funixn[nfunix++] = optarg; - } - else - fprintf(stderr, "rsyslogd: Out of descriptors, ignoring %s\n", optarg); - break; -#endif case 'c': /* compatibility mode */ iCompatibilityMode = atoi(optarg); break; |