aboutsummaryrefslogtreecommitdiff
path: root/src/or/rendservice.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-07-19 12:59:10 -0400
committerNick Mathewson <nickm@torproject.org>2011-07-19 12:59:10 -0400
commitc2d3da6303a6a5e41eabcb18b56ee5d8434a9817 (patch)
tree50b83261d97617f71faf1bdcb69be13a8c4339b4 /src/or/rendservice.c
parent2163e420b2aea36b57a620eb4bb2ff1e7c9e966f (diff)
parent3e3aac5fd552b7b1949b0d2e12368cea26449b83 (diff)
downloadtor-c2d3da6303a6a5e41eabcb18b56ee5d8434a9817.tar.gz
tor-c2d3da6303a6a5e41eabcb18b56ee5d8434a9817.zip
Merge remote-tracking branch 'origin/maint-0.2.2'
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r--src/or/rendservice.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index 5888e390fc..a935241162 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -636,13 +636,15 @@ rend_service_load_keys(void)
}
/* Prepare client_keys and hostname files. */
- if (!(cfile = start_writing_to_stdio_file(cfname, OPEN_FLAGS_REPLACE,
+ if (!(cfile = start_writing_to_stdio_file(cfname,
+ OPEN_FLAGS_REPLACE | O_TEXT,
0600, &open_cfile))) {
log_warn(LD_CONFIG, "Could not open client_keys file %s",
escaped(cfname));
goto err;
}
- if (!(hfile = start_writing_to_stdio_file(fname, OPEN_FLAGS_REPLACE,
+ if (!(hfile = start_writing_to_stdio_file(fname,
+ OPEN_FLAGS_REPLACE | O_TEXT,
0600, &open_hfile))) {
log_warn(LD_CONFIG, "Could not open hostname file %s", escaped(fname));
goto err;