diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-07-19 12:59:10 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-07-19 12:59:10 -0400 |
commit | c2d3da6303a6a5e41eabcb18b56ee5d8434a9817 (patch) | |
tree | 50b83261d97617f71faf1bdcb69be13a8c4339b4 /src/or/geoip.c | |
parent | 2163e420b2aea36b57a620eb4bb2ff1e7c9e966f (diff) | |
parent | 3e3aac5fd552b7b1949b0d2e12368cea26449b83 (diff) | |
download | tor-c2d3da6303a6a5e41eabcb18b56ee5d8434a9817.tar.gz tor-c2d3da6303a6a5e41eabcb18b56ee5d8434a9817.zip |
Merge remote-tracking branch 'origin/maint-0.2.2'
Diffstat (limited to 'src/or/geoip.c')
-rw-r--r-- | src/or/geoip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/geoip.c b/src/or/geoip.c index 62c7a5c394..5596ff3253 100644 --- a/src/or/geoip.c +++ b/src/or/geoip.c @@ -996,7 +996,7 @@ geoip_dirreq_stats_write(time_t now) data_v2 = geoip_get_client_history(GEOIP_CLIENT_NETWORKSTATUS_V2); data_v3 = geoip_get_client_history(GEOIP_CLIENT_NETWORKSTATUS); format_iso_time(written, now); - out = start_writing_to_stdio_file(filename, OPEN_FLAGS_APPEND, + out = start_writing_to_stdio_file(filename, OPEN_FLAGS_APPEND | O_TEXT, 0600, &open_file); if (!out) goto done; @@ -1329,7 +1329,7 @@ geoip_entry_stats_write(time_t now) filename = get_datadir_fname2("stats", "entry-stats"); data = geoip_get_client_history(GEOIP_CLIENT_CONNECT); format_iso_time(written, now); - out = start_writing_to_stdio_file(filename, OPEN_FLAGS_APPEND, + out = start_writing_to_stdio_file(filename, OPEN_FLAGS_APPEND | O_TEXT, 0600, &open_file); if (!out) goto done; |