mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Bug 283356 : nsPSPrinters.cpp compile error: implicit declaration of function `int strcasecmp(...)', patch by Max Feil <mfeil@qnx.com>, r=kherron, sr=tor
This commit is contained in:
parent
06d66d8405
commit
4b53ad80e4
@ -80,7 +80,7 @@ PRBool
|
||||
nsPSPrinterList::Enabled()
|
||||
{
|
||||
const char *val = PR_GetEnv("MOZILLA_POSTSCRIPT_ENABLED");
|
||||
if (val && (val[0] == '0' || !strcasecmp(val, "false")))
|
||||
if (val && (val[0] == '0' || !PL_strcasecmp(val, "false")))
|
||||
return PR_FALSE;
|
||||
|
||||
// is the PS module enabled?
|
||||
|
Loading…
Reference in New Issue
Block a user