diff options
author | Will Thompson <will.thompson@collabora.co.uk> | 2011-03-07 14:12:22 +0000 |
---|---|---|
committer | Will Thompson <will.thompson@collabora.co.uk> | 2011-05-03 13:15:26 +0100 |
commit | c1be75d93784a9b1b37b0dd717b1494029a675b8 (patch) | |
tree | 4574a9773e515c020b706865fe07290f223c048f /src/search-manager.c | |
parent | ea21cdcd49ba24235f97060c056fe9cd9744e69e (diff) |
Remove GabbleXmppError.
There is a FIXME buried in here … but the tests pass.
Diffstat (limited to 'src/search-manager.c')
-rw-r--r-- | src/search-manager.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/search-manager.c b/src/search-manager.c index d3c1fa571..b1a173b3c 100644 --- a/src/search-manager.c +++ b/src/search-manager.c @@ -406,16 +406,16 @@ search_channel_ready_or_not_cb (GabbleSearchChannel *chan, } else { - if (domain == GABBLE_XMPP_ERROR) + if (domain == WOCKY_XMPP_ERROR) { domain = TP_ERRORS; switch (code) { - case XMPP_ERROR_FORBIDDEN: + case WOCKY_XMPP_ERROR_FORBIDDEN: code = TP_ERROR_PERMISSION_DENIED; break; - case XMPP_ERROR_JID_MALFORMED: + case WOCKY_XMPP_ERROR_JID_MALFORMED: code = TP_ERROR_INVALID_ARGUMENT; break; default: |