[Pkg-mc-commits] r123 - in trunk/debian: . patches

winnie at alioth.debian.org winnie at alioth.debian.org
Wed Mar 5 21:31:22 UTC 2008


Author: winnie
Date: 2008-03-05 21:31:20 +0000 (Wed, 05 Mar 2008)
New Revision: 123

Modified:
   trunk/debian/changelog
   trunk/debian/patches/61_escaping.patch
Log:
Added patches


Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2008-03-05 21:21:55 UTC (rev 122)
+++ trunk/debian/changelog	2008-03-05 21:31:20 UTC (rev 123)
@@ -1,3 +1,15 @@
+mc (1:4.6.2~pre1-7) unstable; urgency=low
+
+  * Work in progress on 61_escaping.patch
+    + added - which should be escaped in commandlines
+    + added + which should be escaped in commandlines
+    + added ? which should be escaped in commandlines
+    + added % which should be escaped in commandlines
+    Thanks to the hint of Andreas Tille <tille at debian.org>
+  * 
+
+ -- Patrick Winnertz <winnie at debian.org>  Wed, 05 Mar 2008 22:30:53 +0100
+
 mc (1:4.6.2~pre1-6) unstable; urgency=medium
 
   * Same reason as last upload for urgency=medium. The last version doesn't

Modified: trunk/debian/patches/61_escaping.patch
===================================================================
--- trunk/debian/patches/61_escaping.patch	2008-03-05 21:21:55 UTC (rev 122)
+++ trunk/debian/patches/61_escaping.patch	2008-03-05 21:31:20 UTC (rev 123)
@@ -20,7 +20,7 @@
 +			j = j + 20;
 +			local = g_realloc(local,j);
 +		}
-+		if ( (strchr(" \t*|;<>~#()",in[i])) && ( strchr("\\",in[i-1])) ) {
++		if ( (strchr(" \t*|;<>~#()-+?",in[i])) && ( strchr("\\",in[i-1])) ) {
 +			k++;
 +			local[i-k] = in[i];
 +		} else {
@@ -48,7 +48,7 @@
 +			j = j + 20;
 +			local = g_realloc(local,j);
 +		}
-+		if ( (strchr(" \t*|;<>~#()",in[i])) && (! strchr("\\",in[i-1])) ) {
++		if ( (strchr(" \t*|;<>~#()-+?",in[i])) && (! strchr("\\",in[i-1])) ) {
 +			local[i+k] = 92; // Ascii for "\"
 +			k = k+1;
 +			local[i+k] = in[i];




More information about the Pkg-mc-commits mailing list