Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd13e097

Browse files
committed
Use pg_strcasecmp instead of strcasecmp for portability
Per buildfarm.
1 parentf88a638 commitd13e097

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/bin/pg_basebackup/pg_basebackup.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -914,9 +914,9 @@ main(int argc, char **argv)
914914
}
915915
break;
916916
case'c':
917-
if (strcasecmp(optarg,"fast")==0)
917+
if (pg_strcasecmp(optarg,"fast")==0)
918918
fastcheckpoint= true;
919-
elseif (strcasecmp(optarg,"spread")==0)
919+
elseif (pg_strcasecmp(optarg,"spread")==0)
920920
fastcheckpoint= false;
921921
else
922922
{

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp