diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-11-14 00:09:25 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-11-14 00:09:25 +0000 |
commit | 6d0ef07d51b590fee88e366b5e564509add73469 (patch) | |
tree | e9268db0720999562d0f07ef19aedffc6e3710b8 /net-im | |
parent | 9794cf7ed8dc43d088d3f10a5d29fa1d145f89fd (diff) |
Notes
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gaim/files/patch-src_log.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/net-im/gaim/files/patch-src_log.c b/net-im/gaim/files/patch-src_log.c new file mode 100644 index 000000000000..ff98b9acfc6b --- /dev/null +++ b/net-im/gaim/files/patch-src_log.c @@ -0,0 +1,16 @@ +--- src/log.c.orig Sat Nov 13 10:16:40 2004 ++++ src/log.c Sat Nov 13 10:17:24 2004 +@@ -74,11 +74,12 @@ + 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); |