Fix incorrect comparison due to bad merge

Noted by Fujii Masao
This commit is contained in:
Magnus Hagander 2017-01-16 18:20:57 +01:00
parent e7b020f786
commit fcf708623e
1 changed files with 1 additions and 1 deletions

View File

@ -2306,7 +2306,7 @@ main(int argc, char **argv)
exit(1);
}
if ((replication_slot || no_slot) && includewal != STREAM_WAL)
if (replication_slot && includewal != STREAM_WAL)
{
fprintf(stderr,
_("%s: replication slots can only be used with WAL streaming\n"),