diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-04-16 22:52:06 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-04-16 22:57:05 -0400 |
commit | 3ae5990c6ed54f5d4acec12c2e9e40d110c72230 (patch) | |
tree | dc844349409cfc123fb1cfe4b52c01153ef27ee4 /src/basic/path-util.c | |
parent | 9a0a413a195a21888cf926be5595d0efc1eef0fe (diff) |
tree-wide: introduce PATH_IN_SET macro
Diffstat (limited to 'src/basic/path-util.c')
-rw-r--r-- | src/basic/path-util.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/basic/path-util.c b/src/basic/path-util.c index 822c09bfba..044a12889d 100644 --- a/src/basic/path-util.c +++ b/src/basic/path-util.c @@ -569,10 +569,10 @@ static int binary_is_good(const char *binary) { if (r < 0) return r; - return !path_equal(d, "true") && - !path_equal(d, "/bin/true") && - !path_equal(d, "/usr/bin/true") && - !path_equal(d, "/dev/null"); + return !PATH_IN_SET(d, "true" + "/bin/true", + "/usr/bin/true", + "/dev/null"); } int fsck_exists(const char *fstype) { |