diff src/protocols/qq/im.c @ 13871:2be9dfa9569b

[gaim-migrate @ 16341] Fixed a bug that prevented libqq from being loaded as a plugin. committer: Tailor Script <tailor@pidgin.im>
author Mark Huetsch <markhuetsch>
date Mon, 26 Jun 2006 03:44:39 +0000
parents 983fd420e86b
children ef8490f9e823
line wrap: on
line diff
--- a/src/protocols/qq/im.c	Mon Jun 26 02:58:54 2006 +0000
+++ b/src/protocols/qq/im.c	Mon Jun 26 03:44:39 2006 +0000
@@ -48,7 +48,7 @@
 #define DEFAULT_FONT_NAME_LEN 	  4
 
 // a debug function
-static void _qq_show_packet(gchar * desc, gchar * buf, gint len);
+void _qq_show_packet(gchar * desc, gchar * buf, gint len);
 
 enum
 {
@@ -230,7 +230,7 @@
 
 /*****************************************************************************/
 // generate a md5 key using uid and session_key
-static gchar *_gen_session_md5(gint uid, gchar * session_key)
+gchar *_gen_session_md5(gint uid, gchar * session_key)
 {
 	gchar *src, md5_str[QQ_KEY_LENGTH];
 	guint8 *cursor;