Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit dd85de0

Browse files
committed
fix control file values
1 parent 810ff51 commit dd85de0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

configure.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ pgBackupConfigInit(pgBackupConfig *config)
9999
config->retention_window = 0;
100100

101101
config->compress_alg = NOT_DEFINED_COMPRESS;
102-
config->compress_level = -1;
102+
config->compress_level = DEFAULT_COMPRESS_LEVEL;
103103
}
104104

105105
void

pg_probackup.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include "postgres_fe.h"
1414

1515
#include <limits.h>
16-
#include "libpq-fe.h"
16+
#include <libpq-fe.h>
1717

1818
#ifndef WIN32
1919
#include <sys/mman.h>

0 commit comments

Comments
 (0)