diff options
author | James Booth <boothj5@gmail.com> | 2013-06-25 01:00:24 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-06-25 01:00:24 +0100 |
commit | 2077834b105fb3a65481327f6d6bf3d42c50fb7d (patch) | |
tree | 22f38c7a0373a8ad0c5c11b31d83e816ca24dc7d /src | |
parent | c8567cd793792493c7f8956ea59a97ff44f716e3 (diff) | |
download | profani-tty-2077834b105fb3a65481327f6d6bf3d42c50fb7d.tar.gz |
Changed client type to 'console' as per http://xmpp.org/registrar/disco-categories.html#client
Diffstat (limited to 'src')
-rw-r--r-- | src/xmpp/capabilities.c | 2 |
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); |