source: proiecte/PPPP/gdm/debian/patches/15_default_session.patch @ 134

Last change on this file since 134 was 134, checked in by (none), 14 years ago

gdm sources with the modifications for webcam

File size: 756 bytes
  • daemon/gdm-session-direct.c

    #
    # Description: Prefer "default.session", so that other desktop environments like XFCE can use gdm, too, without being forced to start GNOME.
    # Ubuntu: https://launchpad.net/bugs/403291
    # Upstream: https://bugzilla.gnome.org/show_bug.cgi?id=594733
    #
    old new  
    668668        int           i;
    669669        char         *name;
    670670
     671        name = g_strdup ("default");
     672        if (get_session_command_for_name (name, NULL)) {
     673                return name;
     674        }
     675
    671676        name = g_strdup ("gnome");
    672677        if (get_session_command_for_name (name, NULL)) {
    673678                return name;
Note: See TracBrowser for help on using the repository browser.