# HG changeset patch
# User Mark Doliner <mark@kingant.net>
# Date 1265143320 0
# Node ID 55cda40d5cf4e9da23d6c38b5f97f7ad56390cba
# Parent  508b73ce9b14b2e6c584022bc1b734e47c30f160
We should be using the type listed in the response, not in the
query.  Because who knows what the server is going to respond
with?  I noticed this when trying to connect to an XMPP account
on jabber.linuxlovers.at.  They return a CNAME when querying for
SRV--I don't know if that's actually valid.

$ dig srv _xmpp-client._tcp.jabber.linuxlovers.at

;; ANSWER SECTION:
_xmpp-client._tcp.jabber.linuxlovers.at. 85361 IN CNAME	jabber.linuxlovers.at.

diff -r 508b73ce9b14 -r 55cda40d5cf4 libpurple/dnssrv.c
--- a/libpurple/dnssrv.c	Mon Feb 01 22:00:26 2010 +0000
+++ b/libpurple/dnssrv.c	Tue Feb 02 20:42:00 2010 +0000
@@ -366,7 +366,7 @@
 		cp += 6;
 
 		GETSHORT(dlen,cp);
-		if (query.type == T_SRV) {
+		if (type == T_SRV) {
 			GETSHORT(pref,cp);
 
 			GETSHORT(weight,cp);
@@ -386,7 +386,7 @@
 			srvres->weight = weight;
 
 			ret = g_list_prepend(ret, srvres);
-		} else if (query.type == T_TXT) {
+		} else if (type == T_TXT) {
 			txtres = g_new0(PurpleTxtResponse, 1);
 			txtres->content = g_strndup((gchar*)(++cp), dlen-1);
 			ret = g_list_append(ret, txtres);