[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

X Strike Force XFree86 SVN commit: r2070 - trunk/debian



Author: branden
Date: 2004-12-12 15:36:18 -0500 (Sun, 12 Dec 2004)
New Revision: 2070

Modified:
   trunk/debian/CHANGESETS
   trunk/debian/changelog
   trunk/debian/xfs.init
Log:
Fix syntax error in xfs package's init script.  (Closes: #285133)


Modified: trunk/debian/CHANGESETS
===================================================================
--- trunk/debian/CHANGESETS	2004-12-10 18:50:09 UTC (rev 2069)
+++ trunk/debian/CHANGESETS	2004-12-12 20:36:18 UTC (rev 2070)
@@ -46,4 +46,7 @@
 Thanks to Marc-Aurèle DARCHE for the information!  (Closes: #281504)
     2069
 
+Fix syntax error in xfs package's init script.  (Closes: #285133)
+    2070
+
 vim:set ai et sts=4 sw=4 tw=80:

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2004-12-10 18:50:09 UTC (rev 2069)
+++ trunk/debian/changelog	2004-12-12 20:36:18 UTC (rev 2070)
@@ -1,5 +1,8 @@
 xfree86 (4.3.0.dfsg.1-9+SVN) unstable; urgency=low
 
+  * Upload urgency set to medium due to fix for stable-release-critical bug
+    (#285133; see below).
+
   Changes by Branden Robinson:
 
   * Make factual updates, clarifications, and wording corrections to the FAQ:
@@ -32,8 +35,10 @@
   * Expand discussion of configuring the mouse for left-handed use in the FAQ.
     Thanks to Marc-Aurèle DARCHE for the information!  (Closes: #281504)
 
- -- Branden Robinson <branden@debian.org>  Fri, 10 Dec 2004 13:46:26 -0500
+  * Fix syntax error in xfs package's init script.  (Closes: #285133)
 
+ -- Branden Robinson <branden@debian.org>  Sun, 12 Dec 2004 15:34:08 -0500
+
 xfree86 (4.3.0.dfsg.1-9) unstable; urgency=high
 
   * Security update release.  Resolves CAN-2004-0914 (several Xpm library

Modified: trunk/debian/xfs.init
===================================================================
--- trunk/debian/xfs.init	2004-12-10 18:50:09 UTC (rev 2069)
+++ trunk/debian/xfs.init	2004-12-12 20:36:18 UTC (rev 2070)
@@ -21,7 +21,7 @@
 
 set_up_socket_dir () {
   echo -n "Setting up X font server socket directory $SOCKET_DIR..."
-  if [ -e $SOCKET_DIR && ! [ -d $SOCKET_DIR ]; then
+  if [ -e $SOCKET_DIR ] && ! [ -d $SOCKET_DIR ]; then
     mv $SOCKET_DIR $SOCKET_DIR.$$
   fi
   mkdir -p $SOCKET_DIR



Reply to: