diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-11 09:21:15 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-11 09:22:01 -0400 |
commit | 1cb1767a29458b3d16d6b161b4ee34dd496ff60d (patch) | |
tree | 3ce23a17c56be6b6cbd4163b59247cd380a674e5 /src/shared/util.c | |
parent | ccb03ac39d5360433e62b8b82e474aa044421bd9 (diff) |
util: fix has cc check and add test
Diffstat (limited to 'src/shared/util.c')
-rw-r--r-- | src/shared/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/util.c b/src/shared/util.c index 33427981eb..75dc58b63d 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -5419,7 +5419,7 @@ bool string_has_cc(const char *p, const char *ok) { for (t = p; *t; t++) { if (ok && strchr(ok, *t)) - return false; + continue; if (*t > 0 && *t < ' ') return true; |