diff options
author | Roger Dingledine <arma@torproject.org> | 2006-10-07 06:28:50 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-10-07 06:28:50 +0000 |
commit | f2bd0e2f16944de3b3c8722fb9412ad60d0fae2c (patch) | |
tree | ee2176a6ba2a62879e963f522c029f54d7b003d3 /src/or/config.c | |
parent | 4f3827f1d1365fa8da9f014463d8f3e6acce6b6c (diff) | |
download | tor-f2bd0e2f16944de3b3c8722fb9412ad60d0fae2c.tar.gz tor-f2bd0e2f16944de3b3c8722fb9412ad60d0fae2c.zip |
more minor cleanups
svn:r8630
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c index 7b76288306..ac604bd35f 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -3467,8 +3467,8 @@ write_configuration_file(const char *fname, or_options_t *options) log_notice(LD_CONFIG, "Renaming old configuration file to \"%s\"", fn_tmp); if (rename(fname, fn_tmp) < 0) { log_warn(LD_FS, - "Couldn't rename configuration file \"%s\" to \"%s\": %s", - fname, fn_tmp, strerror(errno)); + "Couldn't rename configuration file \"%s\" to \"%s\": %s", + fname, fn_tmp, strerror(errno)); tor_free(fn_tmp); goto err; } |