about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-06-25 01:00:24 +0100
committerJames Booth <boothj5@gmail.com>2013-06-25 01:00:24 +0100
commit2077834b105fb3a65481327f6d6bf3d42c50fb7d (patch)
tree22f38c7a0373a8ad0c5c11b31d83e816ca24dc7d
parentc8567cd793792493c7f8956ea59a97ff44f716e3 (diff)
downloadprofani-tty-2077834b105fb3a65481327f6d6bf3d42c50fb7d.tar.gz
Changed client type to 'console' as per http://xmpp.org/registrar/disco-categories.html#client
-rw-r--r--src/xmpp/capabilities.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/capabilities.c b/src/xmpp/capabilities.c
index bc023887..10aa8a38 100644
--- a/src/xmpp/capabilities.c
+++ b/src/xmpp/capabilities.c
@@ -233,7 +233,7 @@ caps_create_query_response_stanza(xmpp_ctx_t * const ctx)
     xmpp_stanza_t *identity = xmpp_stanza_new(ctx);
     xmpp_stanza_set_name(identity, "identity");
     xmpp_stanza_set_attribute(identity, "category", "client");
-    xmpp_stanza_set_attribute(identity, "type", "pc");
+    xmpp_stanza_set_attribute(identity, "type", "console");
 
     GString *name_str = g_string_new("Profanity ");
     g_string_append(name_str, PACKAGE_VERSION);