diff options
author | teor <teor@torproject.org> | 2020-02-12 12:22:04 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2020-02-12 12:22:04 +1000 |
commit | ff52205362f5d60c209f298a3e3679bc65bdf539 (patch) | |
tree | 9f5452a584a15cb605c12b5b7d27ce7f93e52579 /src/app | |
parent | 00fe214729b935adc522883fa84b399429fefa74 (diff) | |
parent | 5298113da98f13cfaad4a9ab7b5ac8baa6c37279 (diff) | |
download | tor-ff52205362f5d60c209f298a3e3679bc65bdf539.tar.gz tor-ff52205362f5d60c209f298a3e3679bc65bdf539.zip |
Merge branch 'maint-0.4.1' into maint-0.4.2
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/config/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c index deda2448b6..23781b1b0e 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -6801,7 +6801,7 @@ check_bridge_distribution_setting(const char *bd) }; unsigned i; for (i = 0; i < ARRAY_LENGTH(RECOGNIZED); ++i) { - if (!strcmp(bd, RECOGNIZED[i])) + if (!strcasecmp(bd, RECOGNIZED[i])) return 0; } |