]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - ppdc/ppdc-option.cxx
Sync up with CUPS 1.7svn-r10893
[thirdparty/cups.git] / ppdc / ppdc-option.cxx
index 8ad1c5c08ed5a2ae8f23285f84944938d302410e..e80df3c8759639586b16c63269f82bd9a0767a97 100644 (file)
@@ -3,7 +3,7 @@
 //
 //   Option class for the CUPS PPD Compiler.
 //
-//   Copyright 2007-2009 by Apple Inc.
+//   Copyright 2007-2011 by Apple Inc.
 //   Copyright 2002-2005 by Easy Software Products.
 //
 //   These coded instructions, statements, and computer programs are the
@@ -24,7 +24,7 @@
 // Include necessary headers...
 //
 
-#include "ppdc.h"
+#include "ppdc-private.h"
 
 
 //
@@ -100,7 +100,7 @@ ppdcOption::find_choice(const char *n)              // I - Name of choice
 
 
   for (c = (ppdcChoice *)choices->first(); c; c = (ppdcChoice *)choices->next())
-    if (!strcasecmp(n, c->name->value))
+    if (!_cups_strcasecmp(n, c->name->value))
       return (c);
 
   return (0);