diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-10-07 15:01:02 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-10-07 15:01:02 +0200 |
commit | 090f1cbe72373b31e753af4a1442ddd53b02791b (patch) | |
tree | a679fb6f763357e60a830a0dc4185cae75afba02 /protocols/jabber/io.c | |
parent | 101d84fe3018ba138a9cb5f0f030997e8ff7bdbe (diff) |
Never mind about those privacy lists, they're horrible and not supported
by any client I know of. Also, they're already working on a (probably
completely incompatible) standard: JEP-191. Maybe BitlBee will implement
it too some day...
Diffstat (limited to 'protocols/jabber/io.c')
-rw-r--r-- | protocols/jabber/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/jabber/io.c b/protocols/jabber/io.c index 04b98626..73173dbc 100644 --- a/protocols/jabber/io.c +++ b/protocols/jabber/io.c @@ -385,7 +385,7 @@ static xt_status jabber_pkt_features( struct xt_node *node, gpointer data ) to bind/initialize the session. */ if( jd->flags & JFLAG_AUTHENTICATED && ( jd->flags & ( JFLAG_WAIT_BIND | JFLAG_WAIT_SESSION ) ) == 0 ) { - if( !jabber_get_roster( gc ) || !jabber_get_privacy( gc ) ) + if( !jabber_get_roster( gc ) ) return XT_ABORT; } |