Quote pathnames so pg_standby works with paths that have

spaces in them.

ISHIDA Akio
REL8_3_STABLE
Magnus Hagander 18 years ago
parent 5aaf09ac46
commit bbef913250
  1. 2
      contrib/pg_standby/pg_standby.c

@ -69,7 +69,7 @@ int restoreCommandType;
int nextWALFileType; int nextWALFileType;
#define SET_RESTORE_COMMAND(cmd, arg1, arg2) \ #define SET_RESTORE_COMMAND(cmd, arg1, arg2) \
snprintf(restoreCommand, MAXPGPATH, cmd " %s %s", arg1, arg2) snprintf(restoreCommand, MAXPGPATH, cmd " \"%s\" \"%s\"", arg1, arg2)
struct stat stat_buf; struct stat stat_buf;

Loading…
Cancel
Save