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:
Peter Eisentraut 2013-06-25 23:50:14 -04:00
parent 4ca50e0710
commit 2c1031bd86

View file

@ -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;
/*