~ubuntu-branches/ubuntu/trusty/gdm/trusty-proposed

« back to all changes in this revision

Viewing changes to daemon/gdm-display.c

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha, Tim Lunn, Jeremy Bicha, Robert Ancell
  • Date: 2013-05-31 22:36:08 UTC
  • mfrom: (1.4.55)
  • Revision ID: package-import@ubuntu.com-20130531223608-33uo85niksee5460
Tags: 3.8.1.1-0ubuntu1
[ Tim Lunn ]
* New upstream release
* debian/patches/ubuntu_dont_catch_sigsegv.patch:
  - Dropped, obsolete
* debian/rules:
  - Don't rename gdm binary since that's already been
    done in the new version

[ Jeremy Bicha ]
* debian/control.in: Bump minimum glib
* debian/watch: Watch for unstable releases
* debian/patches/00git_logind_check.patch:
  - Dropped, applied in new release
* debian/patches/08_frequent-users_greeter.patch: Refreshed

[ Robert Ancell ]
* New upstream release
* debian/patches/ubuntu_daemon_autologin_tracking.patch:
* debian/patches/ubuntu_ensure_dirs.patch:
* debian/patches/ubuntu_slave-only-set-up-autologin.patch:
  - Applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1106
1106
                       GdmDisplay            *display)
1107
1107
{
1108
1108
        GArray *cookie = NULL;
 
1109
        GVariant *variant;
1109
1110
 
1110
1111
        gdm_display_get_x11_cookie (display, &cookie, NULL);
1111
1112
 
1112
 
        gdm_dbus_display_complete_get_x11_cookie (skeleton, invocation, cookie->data);
 
1113
        variant = g_variant_new_fixed_array (G_VARIANT_TYPE_BYTE,
 
1114
                                             cookie->data,
 
1115
                                             cookie->len,
 
1116
                                             sizeof (char));
 
1117
        gdm_dbus_display_complete_get_x11_cookie (skeleton, invocation, variant);
1113
1118
 
1114
1119
        g_array_unref (cookie);
1115
1120
        return TRUE;