~ubuntu-branches/ubuntu/feisty/libtelepathy/feisty

« back to all changes in this revision

Viewing changes to src/tp-connmgr.c

  • Committer: Bazaar Package Importer
  • Author(s): Sjoerd Simons
  • Date: 2007-03-12 11:43:26 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070312114326-v4aezxb6sr8utds1
Tags: 0.0.51-2
Bump shlibs

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include "tp-connmgr-signals-marshal.h"
23
23
#include "tp-conn.h"
24
24
#include "tp-helpers.h"
 
25
#include "internal.h"
25
26
 
26
27
static GObjectClass *parent_class = NULL;
27
28
 
151
152
                          connection_parameters, &bus_name,
152
153
                          &object_path, &error))
153
154
  {
154
 
    g_warning("Connect() failed: %s\n", error -> message);
 
155
    _tp_warn_failure ("Connect()", error);
155
156
    g_error_free(error);
156
157
    return NULL;
157
158
  }
165
166
 
166
167
  tp_conn_obj = tp_conn_new(connection, bus_name, object_path);
167
168
 
 
169
  g_free(bus_name);
 
170
  g_free(object_path);
168
171
  return tp_conn_obj;
169
172
}