comparison libpurple/protocols/jabber/jabber.c @ 26532:e344e2815454

Specify SSL properly in debug messages for BOSH sending debug output
author Paul Aurich <paul@darkrain42.org>
date Sat, 04 Apr 2009 04:57:02 +0000
parents d4af753e0e33
children e7bbcc1e2778
comparison
equal deleted inserted replaced
26531:345165fc51b6 26532:e344e2815454
381 last_part = strchr(data_start, '<'); 381 last_part = strchr(data_start, '<');
382 *data_start = '\0'; 382 *data_start = '\0';
383 } 383 }
384 384
385 purple_debug(PURPLE_DEBUG_MISC, "jabber", "Sending%s: %s%s%s\n", 385 purple_debug(PURPLE_DEBUG_MISC, "jabber", "Sending%s: %s%s%s\n",
386 js->gsc ? " (ssl)" : "", text ? text : data, 386 jabber_stream_is_ssl(js) ? " (ssl)" : "", text ? text : data,
387 last_part ? "password removed" : "", 387 last_part ? "password removed" : "",
388 last_part ? last_part : ""); 388 last_part ? last_part : "");
389 389
390 g_free(text); 390 g_free(text);
391 } 391 }