summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-09-14 02:13:35 +0000
committerRoger Dingledine <arma@torproject.org>2005-09-14 02:13:35 +0000
commitc78aafe4b5bcdd0cd5e151d91c9c555139a35495 (patch)
tree4f66819ef2bd286471d639bd34c6289d469c9293
parent62fe24c40cb77c38f5adc4aacd20614b48e461ff (diff)
downloadtor-c78aafe4b5bcdd0cd5e151d91c9c555139a35495.tar.gz
tor-c78aafe4b5bcdd0cd5e151d91c9c555139a35495.zip
and take the bang out
svn:r5042
-rw-r--r--src/or/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 9d950c9ec7..7e6aaf8cbe 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -833,7 +833,7 @@ config_assign_value(config_format_t *fmt, or_options_t *options,
break;
case CONFIG_TYPE_CSV:
- if (!*(smartlist_t**)lvalue) {
+ if (*(smartlist_t**)lvalue) {
SMARTLIST_FOREACH(*(smartlist_t**)lvalue, char *, cp, tor_free(cp));
smartlist_clear(*(smartlist_t**)lvalue);
} else {