aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-09-12 10:03:16 -0400
committerMichał Górny <mgorny@gentoo.org>2013-09-21 09:53:16 +0200
commitcd11aa56b9c211ec45a91b77b19e73aff66d3a88 (patch)
treea3b41b21f2b3b2249ba022492a0f41179b2ddb47
parentAllow tabs in environment files (diff)
downloadsystemd-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.c2
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;