Changes in protocols/jabber/iq.c [186bd04:4eef271]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/iq.c
r186bd04 r4eef271 65 65 if( strcmp( s, XMLNS_VERSION ) == 0 ) 66 66 { 67 xt_add_child( reply, xt_new_node( "name", "BitlBee", NULL ) );67 xt_add_child( reply, xt_new_node( "name", set_getstr( &ic->acc->set, "user_agent" ), NULL ) ); 68 68 xt_add_child( reply, xt_new_node( "version", BITLBEE_VERSION, NULL ) ); 69 69 xt_add_child( reply, xt_new_node( "os", ARCH, NULL ) ); … … 105 105 xt_add_attr( c, "category", "client" ); 106 106 xt_add_attr( c, "type", "pc" ); 107 xt_add_attr( c, "name", "BitlBee");107 xt_add_attr( c, "name", set_getstr( &ic->acc->set, "user_agent" ) ); 108 108 xt_add_child( reply, c ); 109 109
Note: See TracChangeset
for help on using the changeset viewer.