1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-24 21:34:08 +03:00

Actually allow tabs in environment files

Fixup for ac4c8d6da8.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2013-09-12 10:03:16 -04:00
parent f4ae69117b
commit da2620a5f8

View File

@ -5321,7 +5321,7 @@ bool string_has_cc(const char *p) {
assert(p); assert(p);
for (t = p; *t; t++) for (t = p; *t; t++)
if (*t > 0 && *t < ' ') if (*t > 0 && *t < ' ' && *t != '\t')
return true; return true;
return false; return false;