Commit d13e0975 authored by Magnus Hagander's avatar Magnus Hagander

Use pg_strcasecmp instead of strcasecmp for portability

Per buildfarm.
parent f88a6381
......@@ -914,9 +914,9 @@ main(int argc, char **argv)
}
break;
case 'c':
if (strcasecmp(optarg, "fast") == 0)
if (pg_strcasecmp(optarg, "fast") == 0)
fastcheckpoint = true;
else if (strcasecmp(optarg, "spread") == 0)
else if (pg_strcasecmp(optarg, "spread") == 0)
fastcheckpoint = false;
else
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment