Commit fcf70862 authored by Magnus Hagander's avatar Magnus Hagander

Fix incorrect comparison due to bad merge

Noted by Fujii Masao
parent e7b020f7
...@@ -2306,7 +2306,7 @@ main(int argc, char **argv) ...@@ -2306,7 +2306,7 @@ main(int argc, char **argv)
exit(1); exit(1);
} }
if ((replication_slot || no_slot) && includewal != STREAM_WAL) if (replication_slot && includewal != STREAM_WAL)
{ {
fprintf(stderr, fprintf(stderr,
_("%s: replication slots can only be used with WAL streaming\n"), _("%s: replication slots can only be used with WAL streaming\n"),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment