projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7b020f
)
Fix incorrect comparison due to bad merge
author
Magnus Hagander
Mon, 16 Jan 2017 17:20:57 +0000
(18:20 +0100)
committer
Magnus Hagander
Mon, 16 Jan 2017 17:20:57 +0000
(18:20 +0100)
Noted by Fujii Masao
src/bin/pg_basebackup/pg_basebackup.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_basebackup/pg_basebackup.c
b/src/bin/pg_basebackup/pg_basebackup.c
index e7fb527d3a3d993a97679dd76c1cf09f944cd128..c5ae1cc147b7d310fb7b889f1fc7fd4e434815af 100644
(file)
--- a/
src/bin/pg_basebackup/pg_basebackup.c
+++ b/
src/bin/pg_basebackup/pg_basebackup.c
@@
-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"),