# HG changeset patch # User Richard Laager # Date 1133721741 0 # Node ID 90f488e08216fc2dcd445bb747700ccd47f43812 # Parent fc464a0abccc2c2fb87e2574eca63f0eebc504e6 [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 diff -r fc464a0abccc -r 90f488e08216 src/protocols/jabber/oob.c --- 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; diff -r fc464a0abccc -r 90f488e08216 src/protocols/msn/dialog.c --- 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) {