diff options
author | Adam <Adam@anope.org> | 2011-03-24 17:57:27 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-03-24 17:57:27 -0400 |
commit | 0315bd31f817b4d8266ef4802e33414643fa2ac8 (patch) | |
tree | 056f9db72a1ca917c5050652059fc4bf5a7d2c1a | |
parent | 2539f34d3cd0de17c6c43b59faa4f9d7066fca8e (diff) |
Fixed make strict
-rw-r--r-- | src/modules/extra/atheme2anope/atheme2anope_identify.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/extra/atheme2anope/atheme2anope_identify.c b/src/modules/extra/atheme2anope/atheme2anope_identify.c index 8cfe79c6b..0f9b224c7 100644 --- a/src/modules/extra/atheme2anope/atheme2anope_identify.c +++ b/src/modules/extra/atheme2anope/atheme2anope_identify.c @@ -29,12 +29,12 @@ int decrypt_password_md5(NickAlias *na, char *pass, char *tmp_pass); int AnopeInit(int argc, char **argv) { + Command *c; + moduleAddAuthor("Anope"); moduleAddVersion(VERSION_STRING); moduleSetType(SUPPORTED); - Command *c; - c = createCommand("ID", do_atheme_identify, NULL, NICK_HELP_IDENTIFY, -1, -1, -1, -1); moduleAddCommand(NICKSERV, c, MOD_HEAD); @@ -264,7 +264,7 @@ int decrypt_password_posix(NickAlias *na, char *pass, char *tmp_pass) typedef unsigned char md5_byte_t; /* 8-bit byte */ typedef unsigned int md5_word_t; /* 32-bit word */ -///* Define the state of the MD5 Algorithm. */ +/* Define the state of the MD5 Algorithm. */ typedef struct md5_state_s { md5_word_t count[2]; /* message length in bits, lsw first */ md5_word_t abcd[4]; /* digest buffer */ |