diff options
Diffstat (limited to 'irc/ircd-rusnet/files/patch-ircd-s_auth.c')
-rw-r--r-- | irc/ircd-rusnet/files/patch-ircd-s_auth.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/irc/ircd-rusnet/files/patch-ircd-s_auth.c b/irc/ircd-rusnet/files/patch-ircd-s_auth.c new file mode 100644 index 000000000000..b6ddd26d9b7f --- /dev/null +++ b/irc/ircd-rusnet/files/patch-ircd-s_auth.c @@ -0,0 +1,20 @@ +--- ircd/s_auth.c.orig 2007-11-14 03:07:39.000000000 +0600 ++++ ircd/s_auth.c 2007-11-14 03:07:56.000000000 +0600 +@@ -260,7 +260,7 @@ + { + iauth_conf = iauth_conf->next; + MyFree(ectmp->line); +- MyFree((void *)ectmp); ++ MyFree(ectmp); + } + /* little lie.. ;) */ + sendto_flag(SCH_AUTH, "New iauth configuration."); +@@ -287,7 +287,7 @@ + { + iauth_stats = iauth_stats->next; + MyFree(ectmp->line); +- MyFree((void *)ectmp); ++ MyFree(ectmp); + } + iauth_stats = (aExtData *) + MyMalloc(sizeof(aExtData)); |