diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-10-13 18:28:55 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-10-13 18:28:55 +0000 |
commit | e6ed7b9eb57116b2d9a8e1d781fd334f409ed01b (patch) | |
tree | 03a1e12776aba3b4c5e7969ee829737544f56ce3 /src | |
parent | 655889c154fdc3016038d6241a0c50978dd12fac (diff) |
BUILD : 1.7.5 (395) BUGS : N/A NOTES : Fixed a typo in all source files, and merged sstrdup and anopeStrDup, as they do the same thing
git-svn-id: svn://svn.anope.org/anope/trunk@395 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@260 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
49 files changed, 72 insertions, 75 deletions
diff --git a/src/actions.c b/src/actions.c index e7ccc55e8..2db934ff6 100644 --- a/src/actions.c +++ b/src/actions.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/bahamut.c b/src/bahamut.c index 88b8101ee..5cc3bbab5 100644 --- a/src/bahamut.c +++ b/src/bahamut.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/base64.c b/src/base64.c index f17550bba..90b933039 100644 --- a/src/base64.c +++ b/src/base64.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/botserv.c b/src/botserv.c index f9a2f6b86..71d1aaa3d 100644 --- a/src/botserv.c +++ b/src/botserv.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/channels.c b/src/channels.c index 1965edfe2..93b938098 100644 --- a/src/channels.c +++ b/src/channels.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/chanserv.c b/src/chanserv.c index 10cde7435..82702cc05 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/commands.c b/src/commands.c index 833c987c7..6d3bfb5b3 100644 --- a/src/commands.c +++ b/src/commands.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/compat.c b/src/compat.c index 65140933e..9437b18cf 100644 --- a/src/compat.c +++ b/src/compat.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/config.c b/src/config.c index a3b2368b7..746cf7c7a 100644 --- a/src/config.c +++ b/src/config.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. @@ -825,7 +825,7 @@ int parse(char *buf, int linenum, int reload) case PARAM_STRING: /* if (reload && *(char **)d->params[i].ptr) free(*(char **)d->params[i].ptr); */ - *(char **) d->params[i].ptr = anopeStrDup(av[optind++]); + *(char **) d->params[i].ptr = sstrdup(av[optind++]); if (!d->params[i].ptr) { error(linenum, "%s: Out of memory", d->name); return 0; @@ -1182,7 +1182,7 @@ int read_config(int reload) RootNumber++; ServicesRoots = realloc(ServicesRoots, sizeof(char *) * RootNumber); - ServicesRoots[RootNumber - 1] = anopeStrDup(s); + ServicesRoots[RootNumber - 1] = sstrdup(s); } while ((s = strtok(NULL, " "))); } @@ -1195,7 +1195,7 @@ int read_config(int reload) HostNumber++; HostSetters = realloc(HostSetters, sizeof(char *) * HostNumber); - HostSetters[HostNumber - 1] = anopeStrDup(s); + HostSetters[HostNumber - 1] = sstrdup(s); } } while ((s = strtok(NULL, " "))); } @@ -1210,7 +1210,7 @@ int read_config(int reload) ModulesAutoload = realloc(ModulesAutoload, sizeof(char *) * ModulesNumber); - ModulesAutoload[ModulesNumber - 1] = anopeStrDup(s); + ModulesAutoload[ModulesNumber - 1] = sstrdup(s); } } while ((s = strtok(NULL, " "))); } @@ -1225,7 +1225,7 @@ int read_config(int reload) realloc(ModulesDelayedAutoload, sizeof(char *) * ModulesDelayedNumber); ModulesDelayedAutoload[ModulesDelayedNumber - 1] = - anopeStrDup(s); + sstrdup(s); } } while ((s = strtok(NULL, " "))); } @@ -1365,7 +1365,7 @@ int read_config(int reload) DomainNumber++; NetworkDomains = realloc(NetworkDomains, sizeof(char *) * DomainNumber); - NetworkDomains[DomainNumber - 1] = anopeStrDup(s); + NetworkDomains[DomainNumber - 1] = sstrdup(s); } while ((s = strtok(NULL, " "))); } } diff --git a/src/converter.c b/src/converter.c index 1db434a6c..029dea1bd 100644 --- a/src/converter.c +++ b/src/converter.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/datafiles.c b/src/datafiles.c index 49fb8b040..94d66a0b0 100644 --- a/src/datafiles.c +++ b/src/datafiles.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/dreamforge.c b/src/dreamforge.c index 505deb9c8..e755c9781 100644 --- a/src/dreamforge.c +++ b/src/dreamforge.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/encrypt.c b/src/encrypt.c index 39d6c6588..7b7e3ee7a 100644 --- a/src/encrypt.c +++ b/src/encrypt.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/helpserv.c b/src/helpserv.c index dfded27fc..336ee3049 100644 --- a/src/helpserv.c +++ b/src/helpserv.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team / GeniusDex * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/hostserv.c b/src/hostserv.c index 84864c33c..7ab7d8884 100644 --- a/src/hostserv.c +++ b/src/hostserv.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/hybrid.c b/src/hybrid.c index 83b827f4b..7b99f785a 100644 --- a/src/hybrid.c +++ b/src/hybrid.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/init.c b/src/init.c index 83a6866a0..899b79ee3 100644 --- a/src/init.c +++ b/src/init.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/language.c b/src/language.c index ffe3e0b1f..01e7f00d3 100644 --- a/src/language.c +++ b/src/language.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/list.c b/src/list.c index da73f1ab7..4374324c7 100644 --- a/src/list.c +++ b/src/list.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/mail.c b/src/mail.c index b74d30028..2ba0462c8 100644 --- a/src/mail.c +++ b/src/mail.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/main.c b/src/main.c index f61d4f355..62acc5711 100644 --- a/src/main.c +++ b/src/main.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/memory.c b/src/memory.c index 41e4a16ca..504bbaabe 100644 --- a/src/memory.c +++ b/src/memory.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. @@ -75,16 +75,26 @@ void *srealloc(void *oldptr, long newsize) return buf; } -char *sstrdup(const char *s) +char *sstrdup(const char *src) { - char *t = anopeStrDup(s); - if (!t) + char *ret = NULL; + if (src) { +#ifdef __STRICT_ANSI__ + if ((ret = (char *) malloc(strlen(src) + 1))) {; + strcpy(ret, src); + } +#else + ret = strdup(src); +#endif + if (!ret) #if !defined(USE_THREADS) || !defined(LINUX20) - raise(SIGUSR1); + raise(SIGUSR1); #else - abort(); + abort(); #endif - return t; + } + + return ret; } /*************************************************************************/ diff --git a/src/memoserv.c b/src/memoserv.c index e54f554bc..5b031d373 100644 --- a/src/memoserv.c +++ b/src/memoserv.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * -* Please read COPYING and README for furhter details. +* Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/messages.c b/src/messages.c index 02f1cd899..6972dd116 100644 --- a/src/messages.c +++ b/src/messages.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/misc.c b/src/misc.c index 49b08e7cd..b0e87cd54 100644 --- a/src/misc.c +++ b/src/misc.c @@ -4,7 +4,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. @@ -896,7 +896,7 @@ char *host_resolve(char *host) memcpy(&ip, hentp->h_addr, sizeof(hentp->h_length)); addr.s_addr = ip; ntoa(addr, ipbuf, sizeof(ipbuf)); - ipreturn = anopeStrDup(ipbuf); + ipreturn = sstrdup(ipbuf); if (debug) { alog("Resolved %s to %s",host, ipbuf); } @@ -907,17 +907,4 @@ char *host_resolve(char *host) } } -char *anopeStrDup(const char *src) { - char *ret=NULL; - if(src) { -#ifdef __STRICT_ANSI__ - if( (ret = (char *)malloc(strlen(src)+1)) ) {; - strcpy(ret,src); - } -#else - ret = strdup(src); /* this way will prolly be faster, use it if we can */ -#endif - } - return ret; -} diff --git a/src/modules.c b/src/modules.c index ce353e5b2..bfb9a229f 100644 --- a/src/modules.c +++ b/src/modules.c @@ -4,7 +4,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/mysql.c b/src/mysql.c index aeab71668..e9827e7fb 100644 --- a/src/mysql.c +++ b/src/mysql.c @@ -4,7 +4,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/news.c b/src/news.c index 2d3d1f78f..9dc4c0adb 100644 --- a/src/news.c +++ b/src/news.c @@ -4,7 +4,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/nickserv.c b/src/nickserv.c index 94c2d0163..cbc53df58 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -4,7 +4,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/operserv.c b/src/operserv.c index a7f5962a6..da91d4ea4 100644 --- a/src/operserv.c +++ b/src/operserv.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/process.c b/src/process.c index c4ae9b6d7..d0618ffd2 100644 --- a/src/process.c +++ b/src/process.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/proxy.c b/src/proxy.c index 5fa38479a..757bf2bd9 100644 --- a/src/proxy.c +++ b/src/proxy.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/ptlink.c b/src/ptlink.c index 3ffa1bc50..7195abd39 100644 --- a/src/ptlink.c +++ b/src/ptlink.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/rageircd.c b/src/rageircd.c index ec7a64949..2d31e9cf1 100644 --- a/src/rageircd.c +++ b/src/rageircd.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/send.c b/src/send.c index c90f45b24..754b45888 100644 --- a/src/send.c +++ b/src/send.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/servers.c b/src/servers.c index 33071b625..a3b8bf0d0 100644 --- a/src/servers.c +++ b/src/servers.c @@ -3,7 +3,7 @@ * (C) 2004 Anope Team / GeniusDex * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/sessions.c b/src/sessions.c index 948d28807..37744a967 100644 --- a/src/sessions.c +++ b/src/sessions.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/slist.c b/src/slist.c index 5b2c0e774..ee84335a9 100644 --- a/src/slist.c +++ b/src/slist.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/sockutil.c b/src/sockutil.c index b2a552cf7..7d65c0bab 100644 --- a/src/sockutil.c +++ b/src/sockutil.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/timeout.c b/src/timeout.c index 8f919ec53..16963d7d3 100644 --- a/src/timeout.c +++ b/src/timeout.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/ultimate2.c b/src/ultimate2.c index ec6e8896d..ca288ead6 100644 --- a/src/ultimate2.c +++ b/src/ultimate2.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/ultimate3.c b/src/ultimate3.c index b62078e06..bfe22d41f 100644 --- a/src/ultimate3.c +++ b/src/ultimate3.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/unreal31.c b/src/unreal31.c index 90ad7f240..6d2a92867 100644 --- a/src/unreal31.c +++ b/src/unreal31.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/unreal32.c b/src/unreal32.c index f6ee7f54d..758ac8008 100644 --- a/src/unreal32.c +++ b/src/unreal32.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/users.c b/src/users.c index 40a4decfc..7248d22ec 100644 --- a/src/users.c +++ b/src/users.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/viagra.c b/src/viagra.c index ff0038137..51879a350 100644 --- a/src/viagra.c +++ b/src/viagra.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. diff --git a/src/vsnprintf.c b/src/vsnprintf.c index 7c6c212e3..d914ffc3c 100644 --- a/src/vsnprintf.c +++ b/src/vsnprintf.c @@ -3,7 +3,7 @@ * (C) 2003 Anope Team * Contact us at info@anope.org * - * Please read COPYING and README for furhter details. + * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. |