r23393 - in /desktop/experimental/gdm3/debian: changelog patches/06_first_vt.patch
lethalman-guest at users.alioth.debian.org
lethalman-guest at users.alioth.debian.org
Thu Mar 25 18:43:39 UTC 2010
Author: lethalman-guest
Date: Thu Mar 25 18:43:38 2010
New Revision: 23393
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=23393
Log:
* debian/patches/06_first_vt.patch:
- Fix vt mask to really start at given vtN.
Modified:
desktop/experimental/gdm3/debian/changelog
desktop/experimental/gdm3/debian/patches/06_first_vt.patch
Modified: desktop/experimental/gdm3/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gdm3/debian/changelog?rev=23393&op=diff
==============================================================================
--- desktop/experimental/gdm3/debian/changelog [utf-8] (original)
+++ desktop/experimental/gdm3/debian/changelog [utf-8] Thu Mar 25 18:43:38 2010
@@ -15,6 +15,8 @@
- Added, workaround until libxklavier bug gets fixed.
* debian/patches/05_stop_welcome_session.patch:
- Added, really stop the welcome session.
+ * debian/patches/06_first_vt.patch:
+ - Fix vt mask to really start at given vtN.
[ Josselin Mouette ]
* Pass --with-screenshot-dir, newly introduced.
Modified: desktop/experimental/gdm3/debian/patches/06_first_vt.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gdm3/debian/patches/06_first_vt.patch?rev=23393&op=diff
==============================================================================
--- desktop/experimental/gdm3/debian/patches/06_first_vt.patch [utf-8] (original)
+++ desktop/experimental/gdm3/debian/patches/06_first_vt.patch [utf-8] Thu Mar 25 18:43:38 2010
@@ -110,7 +110,7 @@
+ return -1;
+ }
+
-+ for (vtno = get_first_vt (), vtmask = 1 << vtno; vtstat.v_state & vtmask; vtno++, vtmask <<= 1);
++ for (vtno = get_first_vt (), vtmask = 1 << (vtno - 1); vtstat.v_state & vtmask; vtno++, vtmask <<= 1);
+ if (!vtmask) {
+ VE_IGNORE_EINTR (close (fd));
+ return -1;
More information about the pkg-gnome-commits
mailing list