1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 05:26:38 +02:00

Fix a typo in GetCommandLineArgument.

This commit is contained in:
Sadie Powell
2024-01-04 17:52:09 +00:00
parent 36c43683e5
commit 1c30f69bd0
+1 -1
View File
@@ -75,7 +75,7 @@ static bool GetCommandLineArgument(const Anope::string &name, char shortname, An
{
if (argument.equals_ci(name) || (argument.length() == 1 && argument[0] == shortname))
{
param = argument;
param = value;
return true;
}
}