about summary refs log tree commit diff
path: root/editor/pammixinterlace.c
diff options
context:
space:
mode:
Diffstat (limited to 'editor/pammixinterlace.c')
-rw-r--r--editor/pammixinterlace.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/pammixinterlace.c b/editor/pammixinterlace.c
index 579a8092..f22563f6 100644
--- a/editor/pammixinterlace.c
+++ b/editor/pammixinterlace.c
@@ -14,6 +14,8 @@
 
 ******************************************************************************/
 
+#define _BSD_SOURCE    /* Make sure strcaseeq() is in nstring.h */
+
 #include <string.h>
 
 #include "mallocvar.h"
@@ -206,7 +208,7 @@ parseCommandLine(int argc, char ** argv,
         unsigned int i;
         cmdlineP->filterP = NULL;
         for (i = 0; i < sizeof filters / sizeof(struct filter); ++i) {
-            if (STRCASEEQ(filterName, filters[i].name)) {
+            if (strcaseeq(filterName, filters[i].name)) {
                 cmdlineP->filterP = &filters[i];
                 break;
             }