Skip to content
Snippets Groups Projects
Commit 2c1031bd authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

pg_receivexlog: Fix logic error

The code checking the WAL file name contained a logic error and wouldn't
actually catch some bad names.
parent 4ca50e07
No related branches found
No related tags found
No related merge requests found
......@@ -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;
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment