diff options
author | tjr <tjr@FreeBSD.org> | 2003-10-29 10:45:01 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-10-29 10:45:01 +0000 |
commit | 8366c4708abfc6ebc635c80bd233fb62ae9b90dc (patch) | |
tree | 0c4f70781f934d276b897460f13e497bca19523d /lib/libc/gen/glob.c | |
parent | f5759b00c40941c8a20fa62306629cc1df0eef5a (diff) | |
download | FreeBSD-src-8366c4708abfc6ebc635c80bd233fb62ae9b90dc.zip FreeBSD-src-8366c4708abfc6ebc635c80bd233fb62ae9b90dc.tar.gz |
Remove incomplete support for running FreeBSD userland on old NetBSD kernels
lacking the issetugid() and utrace() syscalls.
Diffstat (limited to 'lib/libc/gen/glob.c')
-rw-r--r-- | lib/libc/gen/glob.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libc/gen/glob.c b/lib/libc/gen/glob.c index 5e159dd..17f67f8 100644 --- a/lib/libc/gen/glob.c +++ b/lib/libc/gen/glob.c @@ -375,10 +375,7 @@ globtilde(pattern, patbuf, patbuf_len, pglob) * we're not running setuid or setgid) and then trying * the password file */ - if ( -#ifndef __NETBSD_SYSCALLS - issetugid() != 0 || -#endif + if (issetugid() != 0 || (h = getenv("HOME")) == NULL) { if (((h = getlogin()) != NULL && (pwd = getpwnam(h)) != NULL) || |