changeset 633:0341583ad50c trunk

[svn] - filter out .ogg extension
author nenolod
date Sun, 11 Feb 2007 02:44:18 -0800
parents 04648c436d20
children 65606ed19c76
files ChangeLog src/madplug/plugin.c
diffstat 2 files changed, 10 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Feb 11 01:46:36 2007 -0800
+++ b/ChangeLog	Sun Feb 11 02:44:18 2007 -0800
@@ -1,3 +1,11 @@
+2007-02-11 09:46:36 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
+  revision [1350]
+  - remove some fuzzies
+  
+  trunk/po/cy.po | 1376 +++++++++++++++++++++++++++++++--------------------------
+  1 file changed, 771 insertions(+), 605 deletions(-)
+
+
 2007-02-11 09:21:46 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
   revision [1348]
   - run make update-po
--- a/src/madplug/plugin.c	Sun Feb 11 01:46:36 2007 -0800
+++ b/src/madplug/plugin.c	Sun Feb 11 02:44:18 2007 -0800
@@ -214,8 +214,8 @@
     /* I've seen some flac files beginning with id3 frames..
        so let's exclude known non-mp3 filename extensions */
     if (!strcasecmp(".flac", ext) || !strcasecmp(".mpc", ext) ||
-        !strcasecmp(".tta", ext))
-        return 0;
+        !strcasecmp(".tta", ext) || !strcasecmp(".ogg", ext))
+        return FALSE;
 
     if (fin == NULL)
         return FALSE;