From 2077834b105fb3a65481327f6d6bf3d42c50fb7d Mon Sep 17 00:00:00 2001 From: James Booth Date: Tue, 25 Jun 2013 01:00:24 +0100 Subject: [PATCH] Changed client type to 'console' as per http://xmpp.org/registrar/disco-categories.html#client --- src/xmpp/capabilities.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);