diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-10-11 20:35:06 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2014-10-12 21:41:57 -0400 |
commit | e7aab5412829ed6b50d109f670bd0b1b365838a7 (patch) | |
tree | d1a221bbc76696352312f6d7ba5ae97229f87f2b /src/tmpfiles/tmpfiles.c | |
parent | 654c2d478f50ffbb367dbdc3745f795fcc34574b (diff) |
tmpfiles: compare return against correct errno
name_to_handle_at returns -EOPNOTSUPP, not -ENOTSUP.
Diffstat (limited to 'src/tmpfiles/tmpfiles.c')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index dafb9aee2f..8108b43042 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -259,7 +259,7 @@ static int dir_is_mount_point(DIR *d, const char *subdir) { /* got only one handle; assume different mount points if one * of both queries was not supported by the filesystem */ - if (r_p == -ENOSYS || r_p == -ENOTSUP || r == -ENOSYS || r == -ENOTSUP) + if (r_p == -ENOSYS || r_p == -EOPNOTSUPP || r == -ENOSYS || r == -EOPNOTSUPP) return true; /* return error */ |