mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +03:00
pg_receivexlog: Fix logic error
The code checking the WAL file name contained a logic error and wouldn't actually catch some bad names.
This commit is contained in:
parent
cb687c751c
commit
dc22b34f86
@ -145,7 +145,7 @@ FindStreamingStart(uint32 *tli)
|
||||
* characters.
|
||||
*/
|
||||
if (strlen(dirent->d_name) != 24 ||
|
||||
!strspn(dirent->d_name, "0123456789ABCDEF") == 24)
|
||||
strspn(dirent->d_name, "0123456789ABCDEF") != 24)
|
||||
continue;
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user