diff options
author | drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b <drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-09-02 13:41:14 +0000 |
---|---|---|
committer | drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b <drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-09-02 13:41:14 +0000 |
commit | 113eaa042eaa7b71485de588a082fab096d56c76 (patch) | |
tree | a863d000e373e0b35b0e5e6fbc2db5ef51c119b7 | |
parent | 5088cdcf99af8b7427aaed5c62bc208607be4f13 (diff) |
BUILD : 1.7.19 (1298) BUGS : N/A NOTES : [1] Applied heinz patch to WIN32 docs [2] Corrected comment in chanserv.c
git-svn-id: svn://svn.anope.org/anope/trunk@1298 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1016 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | docs/WIN32.txt | 3 | ||||
-rw-r--r-- | src/chanserv.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 10 insertions, 2 deletions
@@ -35,6 +35,7 @@ Anope Version S V N 08/29 F InspIRCD11 protocol now uses SVSJOIN/PART instead of SAJOIN/PART. [#772] 08/29 F OperServ SGLINE ADD now strips a trailing space from the mask. [#761] 08/29 F TS6 UID generation for all supported TS6 IRCDs. [#731] +09/01 F Added a note in WIN32.txt about pre-compiled installers [# 00] Provided by Trystan <trystan@nomadirc.net> - 2007 08/29 F Module runtime directory not always properly cleaned up. [#768] diff --git a/docs/WIN32.txt b/docs/WIN32.txt index daabcc2ab..828a4f056 100644 --- a/docs/WIN32.txt +++ b/docs/WIN32.txt @@ -8,6 +8,9 @@ Anope for Windows 1) Building the Source + NOTE: If you have downloaded one of the pre-compiled installers, you do + NOT need to complete this step, and you can proceed to step 2. + If you want to build Anope from source on a Win32 system, you will need to follow this instructions: diff --git a/src/chanserv.c b/src/chanserv.c index 24fa87ea5..bfabb1d4a 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -2234,7 +2234,7 @@ int get_access(User * user, ChannelInfo * ci) if (!ci || !user) return -1; - // SuperAdmin always has highest level + /* SuperAdmin always has highest level */ if (user->isSuperAdmin) return ACCESS_SUPERADMIN; diff --git a/version.log b/version.log index 7f7883d5b..e9e864586 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="19" VERSION_EXTRA="-svn" -VERSION_BUILD="1297" +VERSION_BUILD="1298" # $Log$ # +# BUILD : 1.7.19 (1298) +# BUGS : N/A +# NOTES : [1] Applied heinz patch to WIN32 docs [2] Corrected comment in chanserv.c +# # BUILD : 1.7.19 (1297) # BUGS : N/A # NOTES : In the last commit, I forgot to store the just resolved IP in common_unban() so we wont need to |