diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-12-07 16:46:34 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-12-07 16:46:34 +0100 |
commit | f433f1426b10dc7bdd313ee72b842e27089f88f1 (patch) | |
tree | e06562452c98faf2c4dfbb435d803781596e9d9a /sys/src/libauth/noworld.c | |
parent | f341ae8c777dda2876beb4d4a1c67c4e920595ca (diff) |
libauth: open internal file-descriptors with OCEXEC flag
Diffstat (limited to 'sys/src/libauth/noworld.c')
-rw-r--r-- | sys/src/libauth/noworld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/libauth/noworld.c b/sys/src/libauth/noworld.c index c61b1463c..b8687f194 100644 --- a/sys/src/libauth/noworld.c +++ b/sys/src/libauth/noworld.c @@ -15,7 +15,7 @@ noworld(char *user) char *p; int n; - b = Bopen("/adm/users", OREAD); + b = Bopen("/adm/users", OREAD|OCEXEC); if(b == nil) return 0; while((p = Brdline(b, '\n')) != nil){ |