diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | include/services.h | 2 | ||||
-rw-r--r-- | include/sysconf.h.in | 2 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 8 insertions, 3 deletions
@@ -13,6 +13,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004 11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages. [ #00] 11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00] 11/18 A NSAddAccessOnReg to control access list on registration. [ #00] +12/08 F ChanServ ACCESS wrong when dealing negative numbers [#240] 12/06 F Fixed misplaced pointer in moduleAddData(). [ #00] 12/06 F Fixed infinite loop with moduleGetData(). [#239] 12/05 F CS CLEAR OPS strips +a/+q modes, and uses SVSMODE where possible. [ #00] diff --git a/include/services.h b/include/services.h index f420c0347..ff69cce0a 100644 --- a/include/services.h +++ b/include/services.h @@ -428,7 +428,7 @@ struct botinfo_ { /* Access levels for users. */ typedef struct { uint16 in_use; /* 1 if this entry is in use, else 0 */ - uint16 level; + int16 level; NickCore *nc; /* Guaranteed to be non-NULL if in use, NULL if not */ time_t last_seen; } ChanAccess; diff --git a/include/sysconf.h.in b/include/sysconf.h.in index cfd1cd75c..b89165c15 100644 --- a/include/sysconf.h.in +++ b/include/sysconf.h.in @@ -220,7 +220,7 @@ int vsnprintf(char *str, size_t size, const char *format, va_list ap); FILE *popen(const char *command, const char *type); int pclose(FILE *stream); FILE *fdopen(int fildes, const char *mode); -int fileno(FILE *stream); + int ftruncate(int fd, off_t length); #ifdef HAVE_STRSIGNAL diff --git a/version.log b/version.log index 50427b8a8..f03e730e6 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="6" -VERSION_BUILD="482" +VERSION_BUILD="483" # $Log$ # +# BUILD : 1.7.6 (483) +# BUGS : 240 +# NOTES : 1. ChanServ ACCESS wrong when dealing negative numbers, 2. make strict under FreeBSD works again +# # BUILD : 1.7.6 (482) # BUGS : N/A # NOTES : Minor updates to the Unreal32 protocol for NICK and NETINFO |