Commit 8b5db0a8 authored by Jonah H. Harris's avatar Jonah H. Harris
Browse files

removed dup syslog-ident conditional

parent e1a586ee
...@@ -150,10 +150,6 @@ void loadServerConfig(char *filename) { ...@@ -150,10 +150,6 @@ void loadServerConfig(char *filename) {
err = "Invalid log facility. Must be one of USER or between LOCAL0-LOCAL7"; err = "Invalid log facility. Must be one of USER or between LOCAL0-LOCAL7";
goto loaderr; goto loaderr;
} }
} else if (!strcasecmp(argv[0],"syslog-ident") && argc == 2) {
server.syslog_ident = zstrdup(argv[1]);
} else if (!strcasecmp(argv[0],"databases") && argc == 2) { } else if (!strcasecmp(argv[0],"databases") && argc == 2) {
server.dbnum = atoi(argv[1]); server.dbnum = atoi(argv[1]);
if (server.dbnum < 1) { if (server.dbnum < 1) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment