summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes1
-rw-r--r--include/modules.h1
-rw-r--r--src/protocol/hybrid.c2
-rw-r--r--src/users.c2
-rw-r--r--version.log6
5 files changed, 9 insertions, 3 deletions
diff --git a/Changes b/Changes
index 299a6c971..c9e4c6eff 100644
--- a/Changes
+++ b/Changes
@@ -7,6 +7,7 @@ Anope Version S V N
07/09 F Various access levels for oper-commands. [#729]
07/09 F GlobalOnCycle notices being sent to Anope itself or juped servers.[#737]
07/09 F Possible buffer overflow in inspircd10.c [#741]
+07/09 F Various compile errors with `make strict`. [#743]
Anope Version 1.7.19
--------------------
diff --git a/include/modules.h b/include/modules.h
index 46b573992..23e44107a 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -271,6 +271,7 @@ int addModule(Module *m); /* Add a module to the module hash */
int delModule(Module *m); /* Remove a module from the module hash */
MDE Module *findModule(char *name); /* Find a module */
int loadModule(Module *m,User *u); /* Load the given module into the program */
+int encryption_module_init(void); /* Load the encryption module */
int protocol_module_init(void); /* Load the IRCD Protocol Module up*/
int unloadModule(Module *m, User *u); /* Unload the given module from the pro */
int prepForUnload(Module *m); /* Prepare the module for unload */
diff --git a/src/protocol/hybrid.c b/src/protocol/hybrid.c
index 7501177d2..b26489e8e 100644
--- a/src/protocol/hybrid.c
+++ b/src/protocol/hybrid.c
@@ -687,7 +687,7 @@ void hybrid_cmd_sgline(char *mask, char *reason)
void hybrid_cmd_remove_akill(char *user, char *host)
{
- // hybrid seems to support UNKLINE -Certus
+ /* hybrid seems to support UNKLINE -Certus */
send_cmd(s_OperServ, "UNKLINE * %s %s", user, host);
}
diff --git a/src/users.c b/src/users.c
index fe1e41bc1..c4c068162 100644
--- a/src/users.c
+++ b/src/users.c
@@ -569,7 +569,7 @@ User *do_nick(const char *source, char *nick, char *username, char *host,
* DefCon AKILL system, if we want to akill all connecting user's here's where to do it
* then force check_akill again on them...
**/
- // don't akill on netmerges -Certus
+ /* don't akill on netmerges -Certus */
if (is_sync(findserver(servlist, server))
&& checkDefCon(DEFCON_AKILL_NEW_CLIENTS)) {
strncpy(mask, "*@", 3);
diff --git a/version.log b/version.log
index aff7b1374..31602c720 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="1254"
+VERSION_BUILD="1255"
# $Log$
#
+# BUILD : 1.7.19 (1255)
+# BUGS : 743
+# NOTES : Fixed various compile errors with `make strict`
+#
# BUILD : 1.7.19 (1254)
# BUGS : 741
# NOTES : Fixed a possible buffer overflow in inspircd10.c