[Pkg-xfce-commits] r2318 - in goodies/xfmedia/debian: . patches

corsac at alioth.debian.org corsac at alioth.debian.org
Tue Sep 23 22:06:27 UTC 2008


Author: corsac
Date: 2008-09-23 22:06:23 +0000 (Tue, 23 Sep 2008)
New Revision: 2318

Added:
   goodies/xfmedia/debian/patches/07_case-insensitive-add.patch
Modified:
   goodies/xfmedia/debian/changelog
Log:
* debian/patches:
  - 07_case-insensitive-add added, enable case-insensitive add for
    folders, thanks François Wendling.                        closes: #496907

Modified: goodies/xfmedia/debian/changelog
===================================================================
--- goodies/xfmedia/debian/changelog	2008-09-23 22:00:43 UTC (rev 2317)
+++ goodies/xfmedia/debian/changelog	2008-09-23 22:06:23 UTC (rev 2318)
@@ -1,3 +1,11 @@
+xfmedia (0.9.2-6) UNRELEASED; urgency=low
+
+  * debian/patches:
+    - 07_case-insensitive-add added, enable case-insensitive add for
+      folders, thanks François Wendling.                        closes: #496907
+
+ -- Yves-Alexis Perez <corsac at debian.org>  Tue, 23 Sep 2008 23:22:41 +0200
+
 xfmedia (0.9.2-5) unstable; urgency=low
 
   * debian/rules:

Added: goodies/xfmedia/debian/patches/07_case-insensitive-add.patch
===================================================================
--- goodies/xfmedia/debian/patches/07_case-insensitive-add.patch	                        (rev 0)
+++ goodies/xfmedia/debian/patches/07_case-insensitive-add.patch	2008-09-23 22:06:23 UTC (rev 2318)
@@ -0,0 +1,11 @@
+--- src/mainwin-callbacks.c.orig	2006-11-27 07:21:23.000000000 +0000
++++ src/mainwin-callbacks.c	2008-08-28 15:05:14.000000000 +0000
+@@ -1103,7 +1103,7 @@
+             p = g_strrstr(file, ".");
+             if(!p || !*(p+1))
+                 continue;
+-            if(!strstr(allowed_extensions, p))
++            if(!strcasestr(allowed_extensions, p))
+                 continue;
+         }
+         




More information about the Pkg-xfce-commits mailing list