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

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



Author: fabbione
Date: 2004-11-02 02:04:06 -0500 (Tue, 02 Nov 2004)
New Revision: 2003

Modified:
   trunk/debian/CHANGESETS
   trunk/debian/xfree86-common.init
   trunk/debian/xfs.init
Log:
Fix call to which output redirection.


Modified: trunk/debian/CHANGESETS
===================================================================
--- trunk/debian/CHANGESETS	2004-10-31 07:25:02 UTC (rev 2002)
+++ trunk/debian/CHANGESETS	2004-11-02 07:04:06 UTC (rev 2003)
@@ -65,7 +65,7 @@
 contexts after setting up X server and ICE socket directories
 (xfree86-common) and font server socket directories (xfs) after creating
 them in the init scripts.  (Closes: #268812, #271030)
-    1926
+    1926, 2003
 
 Fix missing-word typo in xnest's package description.  Thanks to Roland
 Stigge for catching this.  (Closes: #268997)

Modified: trunk/debian/xfree86-common.init
===================================================================
--- trunk/debian/xfree86-common.init	2004-10-31 07:25:02 UTC (rev 2002)
+++ trunk/debian/xfree86-common.init	2004-11-02 07:04:06 UTC (rev 2003)
@@ -9,7 +9,7 @@
 
 do_restorecon () {
   # Restore file security context (SELinux).
-  if which restorecon >dev/null 2>&1; then
+  if which restorecon >/dev/null 2>&1; then
     restorecon "$1"
   fi
 }

Modified: trunk/debian/xfs.init
===================================================================
--- trunk/debian/xfs.init	2004-10-31 07:25:02 UTC (rev 2002)
+++ trunk/debian/xfs.init	2004-11-02 07:04:06 UTC (rev 2003)
@@ -13,7 +13,7 @@
 
 do_restorecon () {
   # Restore file security context (SELinux).
-  if which restorecon >dev/null 2>&1; then
+  if which restorecon >/dev/null 2>&1; then
     restorecon "$1"
   fi
 }



Reply to: