From: Thadeu Lima de Souza Cascardo Date: Thu, 30 Nov 2006 23:23:22 +0000 (+0000) Subject: Fixed warning with a missing function declaration X-Git-Tag: v0.1.3~114 X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Frnetproxy.git;a=commitdiff_plain;h=1202f5438da6b7f25876784f02fef05c25cceaaf Fixed warning with a missing function declaration jabber_new_start is used in two files and was not declared in a header. --- diff --git a/jabber.h b/jabber.h index 793cdc9..11e5097 100644 --- a/jabber.h +++ b/jabber.h @@ -21,10 +21,12 @@ #define JABBER_H #include +#include #include "nethook.h" net_hook_t* jabber_hook_new (GConn *conn); void jabber_hook_destroy (net_hook_t*); net_hook_t* jabber_server_hook_new (net_hook_t*, char*); +GString* jabber_new_start (iks* node); #endif