]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(lchown): Return EOPNOTSUPP if not supported; this
authorJim Meyering <jim@meyering.net>
Tue, 8 Jun 2004 12:01:38 +0000 (12:01 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 8 Jun 2004 12:01:38 +0000 (12:01 +0000)
is what POSIX-2004 specifies.

lib/lchown.c

index 37320fb84b720922b3f126000e79ea0a67fa4fd7..9b99651ebadf9fd162b2ab560a7854eebfafa39c 100644 (file)
@@ -44,24 +44,22 @@ extern int errno;
 int chown ();
 
 /* Work just like chown, except when FILE is a symbolic link.
-   In that case, set errno to ENOSYS and return -1.
+   In that case, set errno to EOPNOTSUPP and return -1.
    But if autoconf tests determined that chown modifies
    symlinks, then just call chown.  */
 
 int
 lchown (const char *file, uid_t uid, gid_t gid)
 {
-#if CHOWN_MODIFIES_SYMLINK
-  return chown (file, uid, gid);
-#else
+#if ! CHOWN_MODIFIES_SYMLINK
   struct stat stats;
 
   if (lstat (file, &stats) == 0 && S_ISLNK (stats.st_mode))
     {
-      errno = ENOSYS;
+      errno = EOPNOTSUPP;
       return -1;
     }
+#endif
 
   return chown (file, uid, gid);
-#endif
 }