From: Michael Marley Date: Tue, 19 Jun 2018 16:45:44 +0000 (-0400) Subject: Fix default port for integrated ident daemon X-Git-Tag: 0.13-rc1~26 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=cb63e88d483f74c8f2f6e06c35c9d18be45cebaa Fix default port for integrated ident daemon The value for the option identifier was missing, causing what was intended to be the default value to actually become the identifier and the default value to be undefined. This resulted in random ports being chosen. --- diff --git a/src/common/main.cpp b/src/common/main.cpp index 199f175c..628c1a83 100644 --- a/src/common/main.cpp +++ b/src/common/main.cpp @@ -192,7 +192,7 @@ int main(int argc, char **argv) cliParser->addOption("oidentd-conffile", 0, "Set path to oidentd configuration file", "file"); cliParser->addSwitch("strict-ident", 0, "Use users' quasselcore username as ident reply. Ignores each user's configured ident setting."); cliParser->addSwitch("ident-daemon", 0, "Enable internal ident daemon"); - cliParser->addOption("ident-port", 0, "The port quasselcore will listen at for ident requests. Only meaningful with --ident-daemon", "10113"); + cliParser->addOption("ident-port", 0, "The port quasselcore will listen at for ident requests. Only meaningful with --ident-daemon", "port", "10113"); #ifdef HAVE_SSL cliParser->addSwitch("require-ssl", 0, "Require SSL for remote (non-loopback) client connections"); cliParser->addOption("ssl-cert", 0, "Specify the path to the SSL Certificate", "path", "configdir/quasselCert.pem");