diff options
author | Mariusz Zaborski <oshogbo@FreeBSD.org> | 2018-06-19 23:43:14 +0000 |
---|---|---|
committer | Mariusz Zaborski <oshogbo@FreeBSD.org> | 2018-06-19 23:43:14 +0000 |
commit | 7672a0148f79063eac8f8e0beb0db5350d02d5d4 (patch) | |
tree | 413e973544ce3e0e8cc69352f5f5824b3a8821d5 /usr.bin/getopt/getopt.c | |
parent | d18e2bca4b12aba1820c63c125e409418007db49 (diff) | |
download | src-test2-7672a0148f79063eac8f8e0beb0db5350d02d5d4.tar.gz src-test2-7672a0148f79063eac8f8e0beb0db5350d02d5d4.zip |
Notes
Diffstat (limited to 'usr.bin/getopt/getopt.c')
-rw-r--r-- | usr.bin/getopt/getopt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/getopt/getopt.c b/usr.bin/getopt/getopt.c index 3f55a34f6d50..970a4c7659af 100644 --- a/usr.bin/getopt/getopt.c +++ b/usr.bin/getopt/getopt.c @@ -19,7 +19,7 @@ main(int argc, char *argv[]) int c; int status = 0; - if (caph_limit_stdio() < 0 || (cap_enter() < 0 && errno != ENOSYS)) + if (caph_limit_stdio() < 0 || caph_enter() < 0) err(1, "capsicum"); optind = 2; /* Past the program name and the option letters. */ |