diff options
author | Olli Salli <ollisal@gmail.com> | 2011-08-10 19:20:07 +0300 |
---|---|---|
committer | Olli Salli <ollisal@gmail.com> | 2011-08-10 19:20:07 +0300 |
commit | bd22f64177ae9532b5dd3f6697355545bccc8625 (patch) | |
tree | df0ce7fbcf718042a9f20a14d71b659e21b73783 | |
parent | fb81504e14cbd02ae051f06bf39ed7b9f2e85280 (diff) |
Drop an extra == TRUE in a conditional
-rw-r--r-- | src/private-tubes-factory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/private-tubes-factory.c b/src/private-tubes-factory.c index 2f4e6bef..4ec36fd1 100644 --- a/src/private-tubes-factory.c +++ b/src/private-tubes-factory.c @@ -565,7 +565,7 @@ gabble_private_tubes_factory_add_cap (GabbleCapsChannelManager *manager, /* capabilities mean being able to RECEIVE said kinds of tubes. hence, * skip Requested=true (locally initiated) channel classes */ - if (tp_asv_get_boolean (cap, TP_PROP_CHANNEL_REQUESTED, FALSE) == TRUE) + if (tp_asv_get_boolean (cap, TP_PROP_CHANNEL_REQUESTED, FALSE)) return; channel_type = tp_asv_get_string (cap, |