diff libpurple/protocols/jabber/disco.c @ 19489:b0733d5d7621

Fixed code indenting, some spaces were still left and now replaced by tabs.
author Andreas Monitzer <pidgin@monitzer.com>
date Tue, 28 Aug 2007 19:03:07 +0000
parents c03e3fe11ea9
children 301f1597d41f
line wrap: on
line diff
--- a/libpurple/protocols/jabber/disco.c	Tue Aug 28 07:09:48 2007 +0000
+++ b/libpurple/protocols/jabber/disco.c	Tue Aug 28 19:03:07 2007 +0000
@@ -102,61 +102,61 @@
 			SUPPORT_FEATURE("http://jabber.org/protocol/xhtml-im")
 			SUPPORT_FEATURE("urn:xmpp:ping")
 			SUPPORT_FEATURE("http://www.xmpp.org/extensions/xep-0199.html#ns")
-                
-            if(!node) { /* non-caps disco#info, add all enabled extensions */
-                GList *features;
-                for(features = jabber_features; features; features = features->next) {
-                    JabberFeature *feat = (JabberFeature*)features->data;
+			
+			if(!node) { /* non-caps disco#info, add all enabled extensions */
+				GList *features;
+				for(features = jabber_features; features; features = features->next) {
+					JabberFeature *feat = (JabberFeature*)features->data;
 					if(feat->is_enabled == NULL || feat->is_enabled(js, feat->shortname, feat->namespace) == TRUE)
 						SUPPORT_FEATURE(feat->namespace);
-                }
-            }
+				}
+			}
 		} else {
-            const char *ext = NULL;
-            unsigned pos;
-            unsigned nodelen = strlen(node);
-            unsigned capslen = strlen(CAPS0115_NODE);
-            /* do a basic plausability check */
-            if(nodelen > capslen+1) {
-                /* verify that the string is CAPS0115#<ext> and get the pointer to the ext part */
-                for(pos = 0; pos < capslen+1; ++pos) {
-                    if(pos == capslen) {
-                        if(node[pos] == '#')
-                            ext = &node[pos+1];
-                        else
-                            break;
-                    } else if(node[pos] != CAPS0115_NODE[pos])
-                        break;
-                }
-                
-                if(ext != NULL) {
-                    /* look for that ext */
-                    GList *features;
-                    for(features = jabber_features; features; features = features->next) {
-                        JabberFeature *feat = (JabberFeature*)features->data;
-                        if(!strcmp(feat->shortname, ext)) {
+			const char *ext = NULL;
+			unsigned pos;
+			unsigned nodelen = strlen(node);
+			unsigned capslen = strlen(CAPS0115_NODE);
+			/* do a basic plausability check */
+			if(nodelen > capslen+1) {
+				/* verify that the string is CAPS0115#<ext> and get the pointer to the ext part */
+				for(pos = 0; pos < capslen+1; ++pos) {
+					if(pos == capslen) {
+						if(node[pos] == '#')
+							ext = &node[pos+1];
+						else
+							break;
+					} else if(node[pos] != CAPS0115_NODE[pos])
+					break;
+				}
+				
+				if(ext != NULL) {
+					/* look for that ext */
+					GList *features;
+					for(features = jabber_features; features; features = features->next) {
+						JabberFeature *feat = (JabberFeature*)features->data;
+						if(!strcmp(feat->shortname, ext)) {
 							SUPPORT_FEATURE(feat->namespace);
 							break;
-                        }
-                    }
-                    if(features == NULL)
-                        ext = NULL;
-                }
-            }
-            
-            if(ext == NULL) {
-                xmlnode *error, *inf;
-
-                /* XXX: gross hack, implement jabber_iq_set_type or something */
-                xmlnode_set_attrib(iq->node, "type", "error");
-                iq->type = JABBER_IQ_ERROR;
-
-                error = xmlnode_new_child(query, "error");
-                xmlnode_set_attrib(error, "code", "404");
-                xmlnode_set_attrib(error, "type", "cancel");
-                inf = xmlnode_new_child(error, "item-not-found");
-                xmlnode_set_namespace(inf, "urn:ietf:params:xml:ns:xmpp-stanzas");
-            }
+						}
+					}
+					if(features == NULL)
+						ext = NULL;
+				}
+			}
+			
+			if(ext == NULL) {
+				xmlnode *error, *inf;
+				
+				/* XXX: gross hack, implement jabber_iq_set_type or something */
+				xmlnode_set_attrib(iq->node, "type", "error");
+				iq->type = JABBER_IQ_ERROR;
+				
+				error = xmlnode_new_child(query, "error");
+				xmlnode_set_attrib(error, "code", "404");
+				xmlnode_set_attrib(error, "type", "cancel");
+				inf = xmlnode_new_child(error, "item-not-found");
+				xmlnode_set_namespace(inf, "urn:ietf:params:xml:ns:xmpp-stanzas");
+			}
 		}
 
 		jabber_iq_send(iq);
@@ -330,8 +330,8 @@
 		const char *category, *type, *name;
 		category = xmlnode_get_attrib(child, "category");
 		type = xmlnode_get_attrib(child, "type");
-        if(category && type && !strcmp(category, "pubsub") && !strcmp(type,"pep"))
-            js->pep = TRUE;
+		if(category && type && !strcmp(category, "pubsub") && !strcmp(type,"pep"))
+			js->pep = TRUE;
 		if (!category || strcmp(category, "server"))
 			continue;
 		if (!type || strcmp(type, "im"))