Changeset c4bc92a
- Timestamp:
- 2010-03-30T00:26:11Z (15 years ago)
- Branches:
- master
- Children:
- 9bf2481, e3413cc
- Parents:
- 545d7c0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/message.c
r545d7c0 rc4bc92a 80 80 if( type && strcmp( type, "headline" ) == 0 ) 81 81 { 82 c = xt_find_node( node->children, "subject" );83 g_string_append_printf( fullmsg, "Headline: %s\n", c && c->text_len > 0 ? c->text : "");82 if( ( c = xt_find_node( node->children, "subject" ) ) && c->text_len > 0 ) 83 g_string_append_printf( fullmsg, "Headline: %s\n", c->text ); 84 84 85 85 /* <x xmlns="jabber:x:oob"><url>http://....</url></x> can contain a URL, it seems. */
Note: See TracChangeset
for help on using the changeset viewer.