]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_services_account.cpp
Add irc::sockets::isunix for checking if a file is a UNIX socket.
[user/henk/code/inspircd.git] / src / modules / m_services_account.cpp
index 2fb7b08523c7f898f1727ffce13d612135011824..6e15aa8bf7dd138bc466ac9507b250350c4f0889 100644 (file)
@@ -54,7 +54,7 @@ class Channel_r : public ModeHandler
 
        ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string& parameter, bool adding) CXX11_OVERRIDE
        {
-               // only a u-lined server may add or remove the +r mode.
+               // Only a U-lined server may add or remove the +r mode.
                if (!IS_LOCAL(source))
                {
                        // Only change the mode if it's not redundant
@@ -199,7 +199,7 @@ class ModuleServicesAccount
                        m5.RemoveMode(user);
        }
 
-       ModResult HandleMessage(User* user, const MessageTarget& target) CXX11_OVERRIDE
+       ModResult HandleMessage(User* user, const MessageTarget& target)
        {
                if (!IS_LOCAL(user))
                        return MOD_RES_PASSTHRU;
@@ -312,7 +312,7 @@ class ModuleServicesAccount
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides support for ircu-style services accounts, including chmode +R, etc.",VF_OPTCOMMON|VF_VENDOR);
+               return Version("Provides support for ircu-style services accounts, including channel mode +R, etc", VF_OPTCOMMON|VF_VENDOR);
        }
 };