diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-03-23 21:23:05 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-03-23 21:23:05 +0000 |
commit | 605353f9ef380f96e3bba5b5558a16162158616f (patch) | |
tree | 306bd676b8ba1a00fe27fa29dd95d5f930e7ff47 | |
parent | c5536f67df42ef8bcbe694ffa6f0b8556847d041 (diff) |
BUILD : 1.7.14 (1021) BUGS : NOTES : Anope 1.7.14 RC1
git-svn-id: svn://svn.anope.org/anope/trunk@1021 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@746 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | Changes.conf | 2 | ||||
-rw-r--r-- | Changes.lang | 2 | ||||
-rw-r--r-- | Changes.mysql | 2 | ||||
-rw-r--r-- | src/init.c | 17 | ||||
-rw-r--r-- | src/main.c | 10 | ||||
-rw-r--r-- | src/process.c | 8 | ||||
-rw-r--r-- | version.log | 10 |
8 files changed, 29 insertions, 24 deletions
@@ -1,4 +1,4 @@ -Anope Version S V N +Anope Version 1.7.14 -------------------- Provided by Anope Dev. <dev@anope.org> - 2006 02/04 A Events for channel kicks and NickServ logout. [ #00] diff --git a/Changes.conf b/Changes.conf index 541390ed5..1dc9079f0 100644 --- a/Changes.conf +++ b/Changes.conf @@ -1,4 +1,4 @@ -Anope Version S V N +Anope Version 1.7.14 -------------------- ** ADDED CONFIGURATION DIRECTIVES ** diff --git a/Changes.lang b/Changes.lang index fb0b32afc..9b7081780 100644 --- a/Changes.lang +++ b/Changes.lang @@ -1,4 +1,4 @@ -Anope Version S V N +Anope Version 1.7.14 -------------------- *** New Strings: CHAN_X_INVALID diff --git a/Changes.mysql b/Changes.mysql index 4068d596f..0ffcaf240 100644 --- a/Changes.mysql +++ b/Changes.mysql @@ -1,4 +1,4 @@ -Anope Version S V N +Anope Version 1.7.14 -------------------- - NONE diff --git a/src/init.c b/src/init.c index 14f8db1a0..b2bb35e1a 100644 --- a/src/init.c +++ b/src/init.c @@ -484,14 +484,13 @@ int init_secondary(int ac, char **av) return -1; } } - if (!SupportedWindowsVersion()) {
- char *winver = GetWindowsVersion();
- alog("%s is not a supported version of Windows", winver);
- free(winver);
- return -1;
- }
- - if (!nofork) { + if (!SupportedWindowsVersion()) { +
char *winver = GetWindowsVersion(); +
alog("%s is not a supported version of Windows", winver); +
free(winver); +
return -1; +
} +
if (!nofork) { alog("Launching Anope into the background"); FreeConsole(); } @@ -527,7 +526,7 @@ int init_secondary(int ac, char **av) #else for (i = 1; i <= 31; i++) { #endif - signal(i, SIG_IGN); + signal(i, SIG_IGN); } #ifndef USE_THREADS diff --git a/src/main.c b/src/main.c index 1da547e1f..db73e5ae5 100644 --- a/src/main.c +++ b/src/main.c @@ -649,10 +649,10 @@ void do_backtrace(int show_segheader) alog("Backtrace: not available on this platform"); #endif #else - char *winver;
- winver = GetWindowsVersion();
- alog("Backtrace: not available on Windows");
- alog("Running %S", winver);
- free(winver); + char *winver; +
winver = GetWindowsVersion(); +
alog("Backtrace: not available on Windows"); +
alog("Running %S", winver); +
free(winver); #endif } diff --git a/src/process.c b/src/process.c index bde7dda20..8de1e6c87 100644 --- a/src/process.c +++ b/src/process.c @@ -254,13 +254,15 @@ void process() Bahmut ircd aliases but not for pseudo clients on. So additional logic is
that if the ac is greater then 1 copy av[1] else copy av[0]
I also changed from if statments, cause attempting to access a array member
- that is not set can lead to odd things - TSL (3/12/06) */ + that is not set can lead to odd things - TSL (3/12/06) */ if (!anope_set_mod_current_buffer(ac, av)) { if (ac >= 1) { if (nickIsServices(av[0], 1)) { - mod_current_buffer = (ac > 1 ? sstrdup(av[1]) : sstrdup(av[0])); + mod_current_buffer = + (ac > 1 ? sstrdup(av[1]) : sstrdup(av[0])); } else { - mod_current_buffer = (ac > 1 ? sstrdup(av[1]) : sstrdup(av[0])); + mod_current_buffer = + (ac > 1 ? sstrdup(av[1]) : sstrdup(av[0])); } } else { mod_current_buffer = NULL; diff --git a/version.log b/version.log index e8f53b51e..a0fe21d1e 100644 --- a/version.log +++ b/version.log @@ -7,12 +7,16 @@ VERSION_MAJOR="1" VERSION_MINOR="7" -VERSION_PATCH="13" -VERSION_EXTRA="-svn" -VERSION_BUILD="1020" +VERSION_PATCH="14" +VERSION_EXTRA="-rc1" +VERSION_BUILD="1021" # $Log$ # +# BUILD : 1.7.14 (1021) +# BUGS : +# NOTES : Anope 1.7.14 RC1 +# # BUILD : 1.7.13 (1020) # BUGS : # NOTES : fixed main.c after last commit :) |