diff options
author | Max Khon <fjoe@FreeBSD.org> | 2007-11-14 04:56:31 +0000 |
---|---|---|
committer | Max Khon <fjoe@FreeBSD.org> | 2007-11-14 04:56:31 +0000 |
commit | 0e323fc402d7101adb26b7e9094b7467071b0a4f (patch) | |
tree | 10131becd10ede3df83676623d3aaa06b8baf2ad /irc/ircd-rusnet/files/patch-ircd-s_auth.c | |
parent | Change location of pid file from /var/run to /var/run/dcc because (diff) |
Fix gcc 4.2 build.
Approved by: portmgr (pav)
Notes
Notes:
svn path=/head/; revision=202694
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)); |