diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | include/extern.h | 3 | ||||
-rw-r--r-- | include/services.h | 1 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 8 insertions, 3 deletions
@@ -6,6 +6,7 @@ Provided by Anope Dev. <dev@anope.org> - 2005 02/13 A Internal Event support, see EVENTS in the doc folder for help [ #00] 02/05 A Support for Unreal 3.2 +I channel mode. [ #00] 02/03 A Merged anope-win32 branch into the main, now Win32 ready. [ #00] +03/07 F tolower/toupper compiler errors on Win32. [ #00] 03/06 F Services not remove modes correct in some cases. [#308] 03/06 F Protected Umode users are protected from bans. [#311] 03/05 F Added UPDATE to ns help menu [ #00] diff --git a/include/extern.h b/include/extern.h index 4305595f7..66cd043ce 100644 --- a/include/extern.h +++ b/include/extern.h @@ -654,7 +654,8 @@ E int m_version(char *source, int ac, char **av); /**** misc.c ****/ - +E int toupper(char); +E int tolower(char); E char *strscpy(char *d, const char *s, size_t len); E char *stristr(char *s1, char *s2); E char *strnrepl(char *s, int32 size, const char *old, const char *new); diff --git a/include/services.h b/include/services.h index ef0671aec..9eaab1f47 100644 --- a/include/services.h +++ b/include/services.h @@ -154,7 +154,6 @@ extern int shutdown(int, int); #undef toupper #define tolower tolower_ #define toupper toupper_ -extern int toupper(char), tolower(char); /* We also have our own encrypt(). */ #define encrypt encrypt_ diff --git a/version.log b/version.log index 2867d2c7e..8072b9a81 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="8" -VERSION_BUILD="603" +VERSION_BUILD="604" # $Log$ # +# BUILD : 1.7.8 (604) +# BUGS : N/A +# NOTES : tolower/toupper compiler errors on Win32. +# # BUILD : 1.7.8 (603) # BUGS : N/A # NOTES : Fixed EVENT_DEFCON_LEVEL |