changeset 24967:5e77f8512f5b

Report a debug warning if a SLP MSG is not processed because it has unknown flags. This should make it easier to fix problems like with WLM 9. References #7180.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Mon, 19 Jan 2009 01:05:27 +0000
parents 5c7fee60853b
children 50d1fac8f78c 08a2a4029f20 65055671bbfc d68924f1265f
files libpurple/protocols/msn/slpcall.c
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/msn/slpcall.c	Mon Jan 19 00:59:53 2009 +0000
+++ b/libpurple/protocols/msn/slpcall.c	Mon Jan 19 01:05:27 2009 +0000
@@ -239,6 +239,9 @@
 			msn_slpcall_session_init(slpcall);
 	}
 #endif
+	else
+		purple_debug_warning("msn", "Unprocessed SLP message with flags 0x%08lx\n",
+		                     slpmsg->flags);
 
 	return slpcall;
 }