summaryrefslogtreecommitdiff
path: root/src/commands/cmd_user.cpp
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2012-07-24 14:54:29 +0200
committerattilamolnar <attilamolnar@hush.com>2012-10-12 03:57:39 +0200
commitc8b41aa5d256d99eee67ec94492a94dc30e0ea35 (patch)
tree251cb805f1fe25423ca245b4a9b6d5db67451fe8 /src/commands/cmd_user.cpp
parent5961493368ec3c83b688afe6229d4efb1bb4d57a (diff)
Remove superfluous std::string()s
Diffstat (limited to 'src/commands/cmd_user.cpp')
-rw-r--r--src/commands/cmd_user.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_user.cpp b/src/commands/cmd_user.cpp
index 57aecc2f7..305d0847f 100644
--- a/src/commands/cmd_user.cpp
+++ b/src/commands/cmd_user.cpp
@@ -62,7 +62,7 @@ CmdResult CommandUser::HandleLocal(const std::vector<std::string>& parameters, L
* IDENTMAX here.
*/
user->ChangeIdent(parameters[0].c_str());
- user->fullname.assign(parameters[3].empty() ? std::string("No info") : parameters[3], 0, ServerInstance->Config->Limits.MaxGecos);
+ user->fullname.assign(parameters[3].empty() ? "No info" : parameters[3], 0, ServerInstance->Config->Limits.MaxGecos);
user->registered = (user->registered | REG_USER);
}
}