~ubuntu-branches/ubuntu/natty/vino/natty

« back to all changes in this revision

Viewing changes to server/vino-server.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-09-07 14:23:05 UTC
  • mfrom: (1.1.39 upstream)
  • Revision ID: james.westby@ubuntu.com-20090907142305-iweame4y7atzzcii
Tags: 2.27.92-0ubuntu1
* New upstream version:
  - Fix a regression that allows more than one instance of the server to run.
  - Use vino's debug framework instead of g_printerr 
  - Make Avahi use the network interface defined in vino preferences.
  - Use integer (instead of double) as the port parameter in dbus calls.
  - Fixed a warning in libgcrypt initialization.
  - Translations

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
  connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error);
162
162
  if (!connection)
163
163
    {
164
 
      g_printerr (_("Failed to open connection to bus: %s\n"),
165
 
                  error->message);
 
164
      dprintf (DBUS, _("Failed to open connection to bus: %s\n"), error->message);
166
165
      g_error_free (error);
167
166
      return;
168
167
    }
192
191
  connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error);
193
192
  if (!connection)
194
193
    {
195
 
      g_printerr (_("Failed to open connection to bus: %s\n"),
196
 
                  error->message);
 
194
      dprintf (DBUS, _("Failed to open connection to bus: %s\n"), error->message);
197
195
      g_error_free (error);
198
196
      return;
199
197
    }