diff options
author | Jacob Appelbaum <jacob@appelbaum.net> | 2008-12-07 01:51:56 +0000 |
---|---|---|
committer | Jacob Appelbaum <jacob@appelbaum.net> | 2008-12-07 01:51:56 +0000 |
commit | 48aca3c999377f0392ecfb515728750c10d2f4c3 (patch) | |
tree | afd84eb56bd74e2221cff60e4729d2deef4a8c44 | |
parent | f70146ca91555f5feecd960ecee67e7bb6873adc (diff) | |
download | tor-48aca3c999377f0392ecfb515728750c10d2f4c3.tar.gz tor-48aca3c999377f0392ecfb515728750c10d2f4c3.zip |
Small whitespace fix to properly format if () {} statement.
svn:r17503
-rw-r--r-- | src/or/config.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c index 4264344c20..6a60577d09 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1428,8 +1428,7 @@ options_act(or_options_t *old_options) if (options->DirPortFrontPage) { global_dirfrontpagecontents = read_file_to_str(options->DirPortFrontPage, 0, NULL); - if (!global_dirfrontpagecontents) - { + if (!global_dirfrontpagecontents) { log_warn(LD_CONFIG, "DirPortFrontPage file '%s' not found. Continuing anyway.", options->DirPortFrontPage); |