diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/config.c | 2 | ||||
-rw-r--r-- | src/core/dummy/Makefile | 6 | ||||
-rw-r--r-- | src/core/os_clearmodes.c | 2 | ||||
-rw-r--r-- | src/modules/dummy/Makefile | 6 | ||||
-rw-r--r-- | src/protocol/dummy/Makefile | 6 | ||||
-rw-r--r-- | src/protocol/inspircd.c | 3 | ||||
-rw-r--r-- | version.log | 6 |
8 files changed, 27 insertions, 5 deletions
@@ -1,6 +1,7 @@ Anope Version S V N ------------------- Provided by Anope Dev. <dev@anope.org> - 2005 +05/11 F Unable to make when using an old shell. [#369] 05/10 F AnopeFini was called without mod_current_module_name set. [#371] 05/10 F Unidentified users now have level -1 instead of 0 again. [#372] 05/09 F Segfault in ns_maxemail when user's email not set. [ #00] diff --git a/src/config.c b/src/config.c index 4aad88820..2e735abe0 100644 --- a/src/config.c +++ b/src/config.c @@ -858,7 +858,7 @@ int parse(char *buf, int linenum, int reload) if (n == lenof(directives)) { /* error(linenum, "Unknown directive `%s'", dir); - return 1; *//* don't cause abort */ + return 1; *//* don't cause abort */ } return retval; diff --git a/src/core/dummy/Makefile b/src/core/dummy/Makefile new file mode 100644 index 000000000..ec93af36d --- /dev/null +++ b/src/core/dummy/Makefile @@ -0,0 +1,6 @@ +all: DUMMY + +DUMMY: +clean: +distclean: +install: diff --git a/src/core/os_clearmodes.c b/src/core/os_clearmodes.c index 68dab1555..aebe8b7f0 100644 --- a/src/core/os_clearmodes.c +++ b/src/core/os_clearmodes.c @@ -321,7 +321,7 @@ int do_clearmodes(User * u) free(argv[1]); free(argv[0]); } - + if (excepts) { free(excepts); } diff --git a/src/modules/dummy/Makefile b/src/modules/dummy/Makefile new file mode 100644 index 000000000..ec93af36d --- /dev/null +++ b/src/modules/dummy/Makefile @@ -0,0 +1,6 @@ +all: DUMMY + +DUMMY: +clean: +distclean: +install: diff --git a/src/protocol/dummy/Makefile b/src/protocol/dummy/Makefile new file mode 100644 index 000000000..ec93af36d --- /dev/null +++ b/src/protocol/dummy/Makefile @@ -0,0 +1,6 @@ +all: DUMMY + +DUMMY: +clean: +distclean: +install: diff --git a/src/protocol/inspircd.c b/src/protocol/inspircd.c index 7e6539fc4..11b01ec79 100644 --- a/src/protocol/inspircd.c +++ b/src/protocol/inspircd.c @@ -1485,8 +1485,7 @@ int AnopeInit(int argc, char **argv) { moduleAddAuthor("Brain"); - moduleAddVersion - ("$Id$"); + moduleAddVersion("$Id$"); moduleSetType(PROTOCOL); pmodule_ircd_version("InspIRCd 1.0 Beta3"); diff --git a/version.log b/version.log index d50182732..e0ff9e8e1 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="9" -VERSION_BUILD="786" +VERSION_BUILD="787" # $Log$ # +# BUILD : 1.7.9 (787) +# BUGS : 369 +# NOTES : Added a dummy folder/makefile to keep older shells happen with doing processing Makefile.inc subs +# # BUILD : 1.7.9 (786) # BUGS : # NOTES : Applied patch by crazy for language updates and removal of IRCDFILE stuff |