diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-02-05 21:42:46 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-02-05 21:42:46 +0000 |
commit | bb32fa86d760bd4f18793e635c3cb7d5b932307b (patch) | |
tree | ddcffdad9afb003b91880440255689d95f1cddf6 /src/or/config.c | |
parent | 24ad6542c939d3e17cba5af14a51ba2f5bd2c3fc (diff) | |
download | tor-bb32fa86d760bd4f18793e635c3cb7d5b932307b.tar.gz tor-bb32fa86d760bd4f18793e635c3cb7d5b932307b.zip |
Re-normalize whitespace; make "make check-spaces" happy
svn:r3566
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 9a051cef22..0c90b00d44 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -512,7 +512,7 @@ static config_var_t *config_find_option(const char *key) { int i; size_t keylen = strlen(key); - if(!keylen) + if (!keylen) return NULL; /* if they say "--" on the commandline, it's not an option */ /* First, check for an exact (case-insensitive) match */ for (i=0; config_vars[i].name; ++i) { @@ -1157,7 +1157,7 @@ validate_ports_csv(smartlist_t *sl, char *name) { int result = 0; tor_assert(name); - if(!sl) + if (!sl) return 0; SMARTLIST_FOREACH(sl, const char *, cp, |