diff options
-rw-r--r-- | src/map/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.c b/src/map/map.c index 98be77b..b2b9984 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -1668,7 +1668,7 @@ static void map_setlogfile(const char *filename) { char *filename_buf = malloc(strlen (filename) + 50); - sprintf(filename_buf, "gzip -c > %s", filename); + sprintf(filename_buf, "gzip --rsyncable -c > %s", filename); map_logfile = popen(filename_buf, "w"); if (!map_logfile) perror(filename); |