diff options
author | Jim Meyering <jim@meyering.net> | 1999-09-05 06:56:50 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-09-05 06:56:50 +0000 |
commit | 6c26ef5e0d20f8d678ef85b6d526cc25c9837858 (patch) | |
tree | 6af4eef163458ae1fe2119881c81933baeb3f85f | |
parent | a8d1ef1616be7627e9d2f73b0fd193a148377f07 (diff) | |
download | coreutils-6c26ef5e0d20f8d678ef85b6d526cc25c9837858.tar.xz |
(ENOSYS): Don't use ENOMSG; it's not in NeXTStep3.3.
Use EINVAL instead.
-rw-r--r-- | lib/lchown.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lchown.h b/lib/lchown.h index 25e4dac98..46fa0ede0 100644 --- a/lib/lchown.h +++ b/lib/lchown.h @@ -4,6 +4,6 @@ # define ENOSYS ENOTSUP # else /* Some systems don't have ENOTSUP either. */ -# define ENOSYS ENOMSG +# define ENOSYS EINVAL # endif #endif |