diff options
author | Stef Walter <stefw@collabora.co.uk> | 2011-03-28 19:31:17 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-04-04 21:38:34 +0800 |
commit | 9048ff4f63c8ac3174468ceb4787b658d948c6e0 (patch) | |
tree | 1463118a3ed37fd9cbb587afbea4c3725653023c /libempathy | |
parent | 0b0a93b600355d4c205c7777669ee5a42d5e9a3b (diff) | |
download | gsoc2013-empathy-9048ff4f63c8ac3174468ceb4787b658d948c6e0.tar gsoc2013-empathy-9048ff4f63c8ac3174468ceb4787b658d948c6e0.tar.gz gsoc2013-empathy-9048ff4f63c8ac3174468ceb4787b658d948c6e0.tar.bz2 gsoc2013-empathy-9048ff4f63c8ac3174468ceb4787b658d948c6e0.tar.lz gsoc2013-empathy-9048ff4f63c8ac3174468ceb4787b658d948c6e0.tar.xz gsoc2013-empathy-9048ff4f63c8ac3174468ceb4787b658d948c6e0.tar.zst gsoc2013-empathy-9048ff4f63c8ac3174468ceb4787b658d948c6e0.zip |
Remove unnecessary code in empathy_auth_factory_constructed()
https://bugzilla.gnome.org/show_bug.cgi?id=645930
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-auth-factory.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libempathy/empathy-auth-factory.c b/libempathy/empathy-auth-factory.c index 4c9942e95..36f7fda55 100644 --- a/libempathy/empathy-auth-factory.c +++ b/libempathy/empathy-auth-factory.c @@ -474,18 +474,10 @@ empathy_auth_factory_constructed (GObject *obj) { EmpathyAuthFactory *self = EMPATHY_AUTH_FACTORY (obj); TpBaseClient *client = TP_BASE_CLIENT (self); - GError *error = NULL; /* chain up to TpBaseClient first */ G_OBJECT_CLASS (empathy_auth_factory_parent_class)->constructed (obj); - if (error != NULL) - { - g_critical ("Failed to get TpDBusDaemon: %s", error->message); - g_error_free (error); - return; - } - tp_base_client_set_handler_bypass_approval (client, FALSE); /* Handle ServerTLSConnection and ServerAuthentication channels */ |