diff options
author | lethality <lethality@anope.org> | 2011-01-21 00:20:25 +0000 |
---|---|---|
committer | lethality <lethality@anope.org> | 2011-01-21 00:20:25 +0000 |
commit | 11b91fdc67c037b7fdc90c10575b62a3bcb90fcf (patch) | |
tree | 734a2dfcf5c02eb152f19ed9c7b06542198518b0 | |
parent | 0dda705cdb0a950c9ffa38793272a43abfc16a2a (diff) |
Bug #1233 - Fixed some misuse of apostrophes - patch by binki
-rw-r--r-- | src/modules/demos/events.c | 6 | ||||
-rw-r--r-- | src/modules/demos/hs_moo.c | 2 | ||||
-rw-r--r-- | src/modules/ns_maxemail.c | 4 | ||||
-rw-r--r-- | src/modules/os_info.c | 4 | ||||
-rw-r--r-- | src/operserv.c | 4 | ||||
-rw-r--r-- | src/protocol/ptlink.c | 2 | ||||
-rw-r--r-- | version.log | 3 |
7 files changed, 13 insertions, 12 deletions
diff --git a/src/modules/demos/events.c b/src/modules/demos/events.c index dfe9ed73b..cb31c38bd 100644 --- a/src/modules/demos/events.c +++ b/src/modules/demos/events.c @@ -72,11 +72,11 @@ int do_moo(int argc, char **argv) { if(argc>=3) { /* We need at least 3 arguments */ if(stricmp(argv[0],"moo")==0) { /* is it meant for us? */ if((ci = cs_findchan(argv[2]))) { /* channel should always exist */ - anope_cmd_privmsg(ci->bi->nick, ci->name, "%cACTION moo's at %s %c",1,argv[1],1); - return MOD_STOP; /* We've dealt with it, dont let others */ + anope_cmd_privmsg(ci->bi->nick, ci->name, "%cACTION moos at %s %c",1,argv[1],1); + return MOD_STOP; /* We've dealt with it, don't let others */ } } } - return MOD_CONT; /* guess it wasnt for us, pass it on */ + return MOD_CONT; /* guess it wasn't for us, pass it on */ } diff --git a/src/modules/demos/hs_moo.c b/src/modules/demos/hs_moo.c index 4e7e88306..c26433a0c 100644 --- a/src/modules/demos/hs_moo.c +++ b/src/modules/demos/hs_moo.c @@ -80,7 +80,7 @@ void AnopeFini(void) /***************************************************************************************************************************************/ void myHostServHelp(User *u) { - notice(s_HostServ,u->nick, " MOO Moo's at the user!"); /* this will appear in the help list */ + notice(s_HostServ,u->nick, " MOO Moos at the user!"); /* this will appear in the help list */ } int myHostServMooHelp(User *u) { diff --git a/src/modules/ns_maxemail.c b/src/modules/ns_maxemail.c index 039a3d7d9..557a214f7 100644 --- a/src/modules/ns_maxemail.c +++ b/src/modules/ns_maxemail.c @@ -177,9 +177,9 @@ void my_add_languages(void) { char *langtable_en_us[] = { /* LNG_NSEMAILMAX_REACHED */ - "The given email address has reached it's usage limit of %d users.", + "The given email address has reached its usage limit of %d users.", /* LNG_NSEMAILMAX_REACHED_ONE */ - "The given email address has reached it's usage limit of 1 user." + "The given email address has reached its usage limit of 1 user." }; char *langtable_nl[] = { diff --git a/src/modules/os_info.c b/src/modules/os_info.c index cc2e77a8b..57e2db64b 100644 --- a/src/modules/os_info.c +++ b/src/modules/os_info.c @@ -545,12 +545,12 @@ void m_AddLanguages(void) /* OINFO_HELP */ "Syntax: OINFO [ADD|DEL] nick <info>\n" "Add or Delete Oper information for the given nick\n" - "This will show up when any oper /ns info nick's the user.\n" + "This will show up when any oper uses /ns info nick on the user.\n" "and can be used for 'tagging' users etc....", /* OCINFO_HELP */ "Syntax: OINFO [ADD|DEL] chan <info>\n" "Add or Delete Oper information for the given channel\n" - "This will show up when any oper /cs info's the channel.\n" + "This will show up when any oper uses /cs info on the channel.\n" "and can be used for 'tagging' channels etc....", /* OINFO_HELP_CMD */ " OINFO Add / Del an OperInfo line to a nick", diff --git a/src/operserv.c b/src/operserv.c index cd770a352..d338ddb7f 100644 --- a/src/operserv.c +++ b/src/operserv.c @@ -1627,7 +1627,7 @@ void runDefCon(void) if (checkDefCon(DEFCON_FORCE_CHAN_MODES)) { if (DefConChanModes && !DefConModesSet) { if (DefConChanModes[0] == '+' || DefConChanModes[0] == '-') { - alog("DEFCON: setting %s on all chan's", DefConChanModes); + alog("DEFCON: setting %s on all channels", DefConChanModes); DefConModesSet = 1; do_mass_mode(DefConChanModes); } @@ -1637,7 +1637,7 @@ void runDefCon(void) if (DefConChanModes[0] == '+' || DefConChanModes[0] == '-') { DefConModesSet = 0; if ((newmodes = defconReverseModes(DefConChanModes))) { - alog("DEFCON: setting %s on all chan's", newmodes); + alog("DEFCON: setting %s on all channels", newmodes); do_mass_mode(newmodes); free(newmodes); } diff --git a/src/protocol/ptlink.c b/src/protocol/ptlink.c index 0bb4b8f89..47f225c08 100644 --- a/src/protocol/ptlink.c +++ b/src/protocol/ptlink.c @@ -447,7 +447,7 @@ int anope_event_newmask(char *source, int ac, char **av) */ u->mode &= ~UMODE_NM; if (debug) - alog("debug: Ignoring NEWMASK because it's send because of SVSMODE +r"); + alog("debug: Ignoring NEWMASK because it's sent because of SVSMODE +r"); return MOD_CONT; } diff --git a/version.log b/version.log index 0d9eee7d8..af8f59eb9 100644 --- a/version.log +++ b/version.log @@ -8,9 +8,10 @@ VERSION_MAJOR="1" VERSION_MINOR="8" VERSION_PATCH="5" VERSION_EXTRA="-git" -VERSION_BUILD="3056" +VERSION_BUILD="3057" # $Log$ # Changes since 1.8.5 Release +#Revision 3057 - Bug #1233 - Fixed some misuse of apostrophes - patch by binki #Revision 3056 - Bug #1227 - Fixed 'make install' recompiling src/tools #Revision 3055 - Do not allow services opers to send one person more than 32767 memos #Revision 3054 - Enable NICKIP for InspIRCd 1.2+ |