summaryrefslogtreecommitdiff
path: root/src/login/logind-user.c
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2017-09-29 09:58:22 +0200
committerSven Eden <yamakuzure@gmx.net>2017-09-29 09:58:22 +0200
commit47a7397766e88d24f3aad16d9ca2b77233f4ebca (patch)
tree70d7b619dd8e8853dfc438de2e80051867625ea7 /src/login/logind-user.c
parenta4488a7509a96d8b9f0d7793517a217c70ac0361 (diff)
tree-wide: use `!IN_SET(..)` for `a != b && a != c && …`
The included cocci was used to generate the changes. Thanks to @flo-wer for pointing this case out.
Diffstat (limited to 'src/login/logind-user.c')
-rw-r--r--src/login/logind-user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/login/logind-user.c b/src/login/logind-user.c
index cd460d365..485be84f6 100644
--- a/src/login/logind-user.c
+++ b/src/login/logind-user.c
@@ -363,7 +363,7 @@ static int user_mkdir_runtime_path(User *u) {
r = mount("tmpfs", u->runtime_path, "tmpfs", MS_NODEV|MS_NOSUID, t);
if (r < 0) {
- if (errno != EPERM && errno != EACCES) {
+ if (!IN_SET(errno, EPERM, EACCES)) {
r = log_error_errno(errno, "Failed to mount per-user tmpfs directory %s: %m", u->runtime_path);
goto fail;
}