mirror of
https://github.com/postgres/postgres.git
synced 2025-05-15 19:15:29 +03:00
Use pg_strcasecmp instead of strcasecmp for portability
Per buildfarm.
This commit is contained in:
parent
f88a638199
commit
d13e0975c9
@ -914,9 +914,9 @@ main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'c':
|
case 'c':
|
||||||
if (strcasecmp(optarg, "fast") == 0)
|
if (pg_strcasecmp(optarg, "fast") == 0)
|
||||||
fastcheckpoint = true;
|
fastcheckpoint = true;
|
||||||
else if (strcasecmp(optarg, "spread") == 0)
|
else if (pg_strcasecmp(optarg, "spread") == 0)
|
||||||
fastcheckpoint = false;
|
fastcheckpoint = false;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user