Removed duplicate "--version".

This commit is contained in:
Penguin-Guru 2021-10-26 12:29:21 -07:00
parent e1d79c7b59
commit b59795e71c
2 changed files with 2 additions and 5 deletions

View file

@ -752,10 +752,7 @@ bool setupEssentials(int& argc, char** argv, const QCommandLineParser* parser, b
reportAndQuit("--protocolVersion", [&](FILE* fp) {
auto version = protocolVersionsSignatureBase64();
fputs(version.toLatin1().data(), fp);
}); // This doesn't seem to work.
/*reportAndQuit("--version", [&](FILE* fp) {
fputs(BuildInfo::VERSION.toLatin1().data(), fp);
});*/
});
const int listenPort = parser->isSet("listenPort") ? parser->value("listenPort").toInt() : INVALID_PORT;

View file

@ -216,7 +216,7 @@ int main(int argc, const char* argv[]) {
"clockSkew",
"Forces client instance's clock to skew for demonstration purposes.",
"value"
);
); // This should probably be removed.
QCommandLineOption testScriptOption(
"testScript",
"Undocumented. Accepts parameter as U.R.L.",