Mercurial > pidgin
comparison libpurple/protocols/jabber/jabber.c @ 18921:ba3b22cd280b
Mixed up TRUE and FALSE.
author | Andreas Monitzer <pidgin@monitzer.com> |
---|---|
date | Tue, 31 Jul 2007 15:01:14 +0000 |
parents | 2a9d60d7af82 |
children | 5d0141588299 |
comparison
equal
deleted
inserted
replaced
18920:2a9d60d7af82 | 18921:ba3b22cd280b |
---|---|
1127 | 1127 |
1128 purple_notify_error(js->gc, _("Error unregistering account"), | 1128 purple_notify_error(js->gc, _("Error unregistering account"), |
1129 _("Error unregistering account"), msg); | 1129 _("Error unregistering account"), msg); |
1130 g_free(msg); | 1130 g_free(msg); |
1131 if(js->unregistration_cb) | 1131 if(js->unregistration_cb) |
1132 js->unregistration_cb(account, TRUE, js->unregistration_user_data); | 1132 js->unregistration_cb(account, FALSE, js->unregistration_user_data); |
1133 } else if(!strcmp(type,"result")) { | 1133 } else if(!strcmp(type,"result")) { |
1134 purple_notify_info(js->gc, _("Account successfully unregistered"), | 1134 purple_notify_info(js->gc, _("Account successfully unregistered"), |
1135 _("Account successfully unregistered"), NULL); | 1135 _("Account successfully unregistered"), NULL); |
1136 if(js->unregistration_cb) | 1136 if(js->unregistration_cb) |
1137 js->unregistration_cb(account, FALSE, js->unregistration_user_data); | 1137 js->unregistration_cb(account, TRUE, js->unregistration_user_data); |
1138 } | 1138 } |
1139 } | 1139 } |
1140 | 1140 |
1141 static void jabber_unregister_account_cb(JabberStream *js) { | 1141 static void jabber_unregister_account_cb(JabberStream *js) { |
1142 JabberIq *iq; | 1142 JabberIq *iq; |