diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-09-12 10:03:16 -0400 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-09-21 09:53:16 +0200 |
commit | cd11aa56b9c211ec45a91b77b19e73aff66d3a88 (patch) | |
tree | a3b41b21f2b3b2249ba022492a0f41179b2ddb47 | |
parent | Allow tabs in environment files (diff) | |
download | systemd-gentoo-206.tar.gz systemd-gentoo-206.tar.bz2 systemd-gentoo-206.zip |
Actually allow tabs in environment filesgentoo-206
Fixup for ac4c8d6da8b5e.
-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 f3243834d..b86b9dd55 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -5355,7 +5355,7 @@ bool string_has_cc(const char *p) { assert(p); for (t = p; *t; t++) - if (*t > 0 && *t < ' ') + if (*t > 0 && *t < ' ' && *t != '\t') return true; return false; |