diff options
Diffstat (limited to 'chat/gaim/patches/patch-ab')
-rw-r--r-- | chat/gaim/patches/patch-ab | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/chat/gaim/patches/patch-ab b/chat/gaim/patches/patch-ab new file mode 100644 index 00000000000..be0f8084457 --- /dev/null +++ b/chat/gaim/patches/patch-ab @@ -0,0 +1,18 @@ +$NetBSD: patch-ab,v 1.12 2004/11/12 22:58:25 jmmv Exp $ + +--- src/log.c.orig 2004-11-11 20:11:43.000000000 +0100 ++++ src/log.c +@@ -74,11 +74,12 @@ void gaim_log_free(GaimLog *log) + void gaim_log_write(GaimLog *log, GaimMessageFlags type, + const char *from, time_t time, const char *message) + { ++ struct _gaim_logsize_user *lu; ++ + g_return_if_fail(log); + g_return_if_fail(log->logger); + g_return_if_fail(log->logger->write); + +- struct _gaim_logsize_user *lu; + (log->logger->write)(log, type, from, time, message); + + lu = g_new(struct _gaim_logsize_user, 1); |