]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Replace all abstract usages of his/he/her with they/their/it.
authorPeter Powell <petpow@saberuk.com>
Fri, 7 Jun 2019 18:47:15 +0000 (19:47 +0100)
committerPeter Powell <petpow@saberuk.com>
Fri, 7 Jun 2019 19:22:43 +0000 (20:22 +0100)
docs/conf/modules.conf.example
src/channels.cpp
src/modules/extra/m_mysql.cpp
src/modules/m_delayjoin.cpp
src/modules/m_spanningtree/svsnick.cpp

index a2a2194448125591d7ec4c8d983bdbd04fb9235d..ed5638932cdbf2b6ed7d054c4da0e0f0e97b6dc0 100644 (file)
 #<module name="chanfilter">
 #
 # If hidemask is set to yes, the user will not be shown the mask when
-# his/her message is blocked.
+# their message is blocked.
 #
 # If maxlen is set then it defines the maximum length of a filter entry.
 #
 # If notifyuser is set to no, the user will not be notified when
-# his/her message is blocked.
+# their message is blocked.
 #<chanfilter hidemask="yes" maxlen="50" notifyuser="yes">
 
 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
 #          at the <module> tag for info on availability.              #
 #                                                                     #
 # If notifyuser is set to no, the user will not be notified when      #
-# his/her message is blocked.                                         #
+# their message is blocked.                                           #
 #<filteropts engine="glob" notifyuser="yes">
 #                                                                     #
 # Your choice of regex engine must match on all servers network-wide. #
 #<module name="muteban">
 #
 # If notifyuser is set to no, the user will not be notified when
-# his/her message is blocked.
+# their message is blocked.
 #<muteban notifyuser="yes">
 
 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
index 0ff252c9517835100e8f7385668f35023aa9c061..befc1f133ea555de6c3f7e066ec42a5ed30402e8 100644 (file)
@@ -271,8 +271,8 @@ Membership* Channel::ForceJoin(User* user, const std::string* privs, bool bursti
 
        if (privs)
        {
-               // If the user was granted prefix modes (in the OnUserPreJoin hook, or he's a
-               // remote user and his own server set the modes), then set them internally now
+               // If the user was granted prefix modes (in the OnUserPreJoin hook, or they're a
+               // remote user and their own server set the modes), then set them internally now
                for (std::string::const_iterator i = privs->begin(); i != privs->end(); ++i)
                {
                        PrefixMode* mh = ServerInstance->Modes->FindPrefixMode(*i);
index 4f727519fd7c535221f665221104ca424c32844d..6a9f38b6c62676a0c461c970ec636603be6abb5b 100644 (file)
@@ -68,7 +68,7 @@
  * The ircd thread then mutexes the queue once more, reads the outbound response off the head
  * of the queue, and sends it on its way to the original calling module.
  *
- * XXX: You might be asking "why doesnt he just send the response from within the worker thread?"
+ * XXX: You might be asking "why doesnt it just send the response from within the worker thread?"
  * The answer to this is simple. The majority of InspIRCd, and in fact most ircd's are not
  * threadsafe. This module is designed to be threadsafe and is careful with its use of threads,
  * however, if we were to call a module's OnRequest even from within a thread which was not the
index acfbfce26d8b6a0fcfe6b8c72262383d9a5f1480..1c1d36e19863305c01c69c465a718fa191f943d2 100644 (file)
@@ -215,7 +215,7 @@ void DelayJoinMode::RevealUser(User* user, Channel* chan)
        chan->Write(joinevent, 0, except_list);
 }
 
-/* make the user visible if he receives any mode change */
+/* make the user visible if they receive any mode change */
 ModResult ModuleDelayJoin::OnRawMode(User* user, Channel* channel, ModeHandler* mh, const std::string& param, bool adding)
 {
        if (!channel || param.empty())
index a734dc8ed8e84bb1945b7e5b7ca54bc40c02b6fb..c44a6a4bb1b85e4e9bcefb0d504fe226e263ecb0 100644 (file)
@@ -41,7 +41,7 @@ CmdResult CommandSVSNick::Handle(User* user, Params& parameters)
                // 4. SVSNICK arrives
                // 5. Attila_ gets his nick changed to Guest12345 unnecessarily
                //
-               // In this case when the SVSNICK is processed the target has already changed his nick to something
+               // In this case when the SVSNICK is processed the target has already changed their nick to something
                // which isn't protected, so changing the nick again to a Guest nick is not desired.
                // However, if the expected nick TS parameter is present in the SVSNICK then the nick change in step 5
                // won't happen because the timestamps won't match.