[Modconf-commits] r206 - in trunk/modconf: debian modules

Frank Lichtenheld djpig at debian.org
Thu May 10 22:29:06 UTC 2007


Author: djpig
Date: 2007-05-10 22:29:05 +0000 (Thu, 10 May 2007)
New Revision: 206

Modified:
   trunk/modconf/debian/changelog
   trunk/modconf/debian/control
   trunk/modconf/modules/util
Log:
* Fix escaping of qoutes in module summaries. Patch by
  Scott Edwards. (Closes: #358855)
* Build against kernel-tree-2.6.20


Modified: trunk/modconf/debian/changelog
===================================================================
--- trunk/modconf/debian/changelog	2006-11-10 13:14:43 UTC (rev 205)
+++ trunk/modconf/debian/changelog	2007-05-10 22:29:05 UTC (rev 206)
@@ -1,3 +1,11 @@
+modconf (0.3.2) unstable; urgency=low
+
+  * Fix escaping of qoutes in module summaries. Patch by
+    Scott Edwards. (Closes: #358855)
+  * Build against kernel-tree-2.6.20
+
+ -- Frank Lichtenheld <djpig at debian.org>  Fri, 11 May 2007 00:26:16 +0200
+
 modconf (0.3.1) unstable; urgency=high
 
   * Remove dependency on 2.4 kernel source and remove support for

Modified: trunk/modconf/debian/control
===================================================================
--- trunk/modconf/debian/control	2006-11-10 13:14:43 UTC (rev 205)
+++ trunk/modconf/debian/control	2007-05-10 22:29:05 UTC (rev 206)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Frank Lichtenheld <djpig at debian.org>
 Build-Depends: debhelper (>= 5)
-Build-Depends-Indep: linux-tree-2.6.18
+Build-Depends-Indep: linux-tree-2.6.20
 Standards-Version: 3.7.2
 
 Package: modconf

Modified: trunk/modconf/modules/util
===================================================================
--- trunk/modconf/modules/util	2006-11-10 13:14:43 UTC (rev 205)
+++ trunk/modconf/modules/util	2007-05-10 22:29:05 UTC (rev 206)
@@ -129,7 +129,7 @@
 
   eval "summary=$`echo summary_$modulevarname`"
   if [ -n "$summary" ]; then
-    echo -n "$summary"
+    echo -n "$summary" | sed s/\"/\\\\\"/g
   else
     echo -n "$msg_Desc_not_avail"
   fi




More information about the Modconf-commits mailing list