diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-08-09 18:20:12 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-08-09 18:20:12 +0200 |
commit | b4542af6b4c69dff7d2c28d9c435304b7d78dc38 (patch) | |
tree | 8a42ca6672184895ab63cf5488fe6c474353e027 /src/users.cpp | |
parent | e4b76e65025ce6039e6c07fa7c7b28962abd6e18 (diff) |
Accept std::string as parameter in User::ChangeHost(), ChangeIdent() and ChangeName()
Pass the string itself to IsIdent() instead of string.c_str()
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/users.cpp b/src/users.cpp index bb7588fb2..3bc196321 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -1106,7 +1106,7 @@ bool User::SharesChannelWith(User *other) return false; } -bool User::ChangeName(const char* gecos) +bool User::ChangeName(const std::string& gecos) { if (!this->fullname.compare(gecos)) return true; @@ -1124,7 +1124,7 @@ bool User::ChangeName(const char* gecos) return true; } -bool User::ChangeDisplayedHost(const char* shost) +bool User::ChangeDisplayedHost(const std::string& shost) { if (dhost == shost) return true; @@ -1148,7 +1148,7 @@ bool User::ChangeDisplayedHost(const char* shost) return true; } -bool User::ChangeIdent(const char* newident) +bool User::ChangeIdent(const std::string& newident) { if (this->ident == newident) return true; |