8000 bugfix: undeclared compress_alg · postgrespro/pg_probackup@13c4df8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 13c4df8

Browse files
committed
bugfix: undeclared compress_alg
1 parent eec11c0 commit 13c4df8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pg_probackup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ compress_init(void)
582582
if (backup_subcmd == BACKUP_CMD || backup_subcmd == ARCHIVE_PUSH_CMD)
583583
{
584584
#ifndef HAVE_LIBZ
585-
if (compress_alg == ZLIB_COMPRESS)
585+
if (instance_config.compress_alg == ZLIB_COMPRESS)
586586
elog(ERRO 41AB R, "This build does not support zlib compression");
587587
else
588588
#endif

0 commit comments

Comments
 (0)
0