diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-10-23 01:00:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-10-23 01:00:17 +0000 |
commit | 3b634cb0bd0b58d420ee95bdd620966993c7e7fc (patch) | |
tree | e809aa45f3ed5e64b81bd28788ba64c3a409a633 /bin | |
parent | 2f2c3d6f4b35d18200073d1accc104e3f30a4fc4 (diff) |
correct precedence; from Ilya Kaliman
Diffstat (limited to 'bin')
-rw-r--r-- | bin/mkdir/mkdir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/mkdir/mkdir.c b/bin/mkdir/mkdir.c index 9ebf6b4b4b0..19438828fc0 100644 --- a/bin/mkdir/mkdir.c +++ b/bin/mkdir/mkdir.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mkdir.c,v 1.28 2015/10/10 20:18:30 deraadt Exp $ */ +/* $OpenBSD: mkdir.c,v 1.29 2015/10/23 01:00:16 deraadt Exp $ */ /* $NetBSD: mkdir.c,v 1.14 1995/06/25 21:59:21 mycroft Exp $ */ /* @@ -82,7 +82,7 @@ main(int argc, char *argv[]) argc -= optind; argv += optind; - if (mode & (S_ISUID | S_ISGID | S_ISTXT) == 0) { + if ((mode & (S_ISUID | S_ISGID | S_ISTXT)) == 0) { if (pledge("stdio rpath cpath fattr", NULL) == -1) err(1, "pledge"); } |