diff options
author | Eric Blake <ebb9@byu.net> | 2009-10-23 06:59:23 -0600 |
---|---|---|
committer | Eric Blake <ebb9@byu.net> | 2009-10-23 16:24:08 -0600 |
commit | 1ce9e1e5ca1e7491bccedeeced15470d856c9a22 (patch) | |
tree | b1ff911072e189b2e0b3b84f605353e68fae27ac /NEWS | |
parent | b6540b96ba6510af7b2acc6e81bd9d9583f7c96b (diff) | |
download | coreutils-1ce9e1e5ca1e7491bccedeeced15470d856c9a22.tar.xz |
nohup: use EXIT_CANCELED if not POSIXLY_CORRECT
* src/nohup.c (NOHUP_FAILURE): Rename...
(POSIX_NOHUP_FAILURE): ...to this.
(main): Pay attention to POSIXLY_CORRECT, to determine whether to
use status 125 or 127.
* doc/coreutils.texi (nohup invocation): Document this.
* NEWS: Likewise.
* tests/misc/invalid-opt (exit_status): Adjust expected results.
* tests/misc/help-version (expected_failure_status): Likewise.
* tests/misc/nohup: Likewise.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -29,7 +29,8 @@ GNU coreutils NEWS -*- outline -*- chroot, env, nice, and su fail with status 125, rather than 1, on internal error such as failure to parse command line arguments; this is for consistency with stdbuf and timeout, and avoids ambiguity - with the invoked command failing with status 1. + with the invoked command failing with status 1. Likewise, nohup + fails with status 125 instead of 127. ** New features |