Skip to content

Commit c5bad91

Browse files
committed
Fix order of the mode string to suite the order in open.c
1 parent 0f95afe commit c5bad91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/bootstrap/bootstrap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ open_bki(char *bki_file)
523523
* handling of EOL. Refer to src/port/open.c for similar handling of
524524
* FRONTEND code.
525525
*/
526-
return fopen(bki_file, "tr");
526+
return fopen(bki_file, "rt");
527527
#else
528528
return fopen(bki_file, "r");
529529
#endif

0 commit comments

Comments
 (0)