aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bin/pg_basebackup/pg_receivexlog.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/bin/pg_basebackup/pg_receivexlog.c b/src/bin/pg_basebackup/pg_receivexlog.c
index e65f127d1d8..e68f8ea7079 100644
--- a/src/bin/pg_basebackup/pg_receivexlog.c
+++ b/src/bin/pg_basebackup/pg_receivexlog.c
@@ -13,19 +13,21 @@
*/
#include "postgres_fe.h"
-#include "libpq-fe.h"
-#include "access/xlog_internal.h"
-
-#include "receivelog.h"
-#include "streamutil.h"
#include <dirent.h>
+#include <signal.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
+#include "libpq-fe.h"
+#include "access/xlog_internal.h"
#include "getopt_long.h"
+#include "receivelog.h"
+#include "streamutil.h"
+
+
/* Time to sleep between reconnection attempts */
#define RECONNECT_SLEEP_TIME 5