# HG changeset patch # User Paul Aurich # Date 1238821022 0 # Node ID e344e2815454ab9b5c1882a23a0307d79b66d5f8 # Parent 345165fc51b6d1d202570d50a856b7b76320e776 Specify SSL properly in debug messages for BOSH sending debug output diff -r 345165fc51b6 -r e344e2815454 libpurple/protocols/jabber/jabber.c --- a/libpurple/protocols/jabber/jabber.c Sat Apr 04 04:54:56 2009 +0000 +++ b/libpurple/protocols/jabber/jabber.c Sat Apr 04 04:57:02 2009 +0000 @@ -383,7 +383,7 @@ } purple_debug(PURPLE_DEBUG_MISC, "jabber", "Sending%s: %s%s%s\n", - js->gsc ? " (ssl)" : "", text ? text : data, + jabber_stream_is_ssl(js) ? " (ssl)" : "", text ? text : data, last_part ? "password removed" : "", last_part ? last_part : "");