Mercurial > pidgin
changeset 12324:90f488e08216
[gaim-migrate @ 14628]
My last commit had an error. A couple of functions were declared in headers. I've made them non-static again and added an #include to kill the warning.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sun, 04 Dec 2005 18:42:21 +0000 |
parents | fc464a0abccc |
children | 33026deed1ce |
files | src/protocols/jabber/oob.c src/protocols/msn/dialog.c |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/jabber/oob.c Sun Dec 04 18:19:56 2005 +0000 +++ b/src/protocols/jabber/oob.c Sun Dec 04 18:42:21 2005 +0000 @@ -25,6 +25,7 @@ #include "jabber.h" #include "iq.h" +#include "oob.h" typedef struct _JabberOOBXfer { char *address; @@ -149,7 +150,7 @@ jabber_oob_xfer_recv_error(xfer, "404"); } -static void jabber_oob_parse(JabberStream *js, xmlnode *packet) { +void jabber_oob_parse(JabberStream *js, xmlnode *packet) { JabberOOBXfer *jox; GaimXfer *xfer; char *filename;
--- a/src/protocols/msn/dialog.c Sun Dec 04 18:19:56 2005 +0000 +++ b/src/protocols/msn/dialog.c Sun Dec 04 18:42:21 2005 +0000 @@ -23,6 +23,7 @@ */ #include "msn.h" +#include "dialog.h" typedef struct { @@ -69,7 +70,7 @@ g_free(data); } -static void +void msn_show_sync_issue(MsnSession *session, const char *passport, const char *group_name) {