git-symlink-eexist
authorGNU Libc Maintainers <debian-glibc@lists.debian.org>
Thu, 17 Jul 2025 11:21:32 +0000 (13:21 +0200)
committerAurelien Jarno <aurel32@debian.org>
Thu, 17 Jul 2025 11:21:32 +0000 (13:21 +0200)
commit 1eb32c5788a59b821087f971821536a22a3b65de
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Mon Apr 21 22:21:17 2025 +0200

    hurd: Make symlink return EEXIST on existing target directory

    The gnulib testsuite does not recognize ENOTDIR for such a situation,
    and this error is indeed more comprehensible to users.

Gbp-Pq: Topic hurd-i386
Gbp-Pq: Name git-symlink-eexist.diff

sysdeps/mach/hurd/symlinkat.c

index e7dfb673df84a23b7659f5864bba927c18432e71..cb6250e6f0780ba786a3b76762650df8e301aa3a 100644 (file)
@@ -47,7 +47,7 @@ __symlinkat (const char *from, int fd, const char *to)
 
   if (! *name)
     /* Can't link to the existing directory itself.  */
-    err = ENOTDIR;
+    err = EEXIST;
   else
     /* Create a new, unlinked node in the target directory.  */
     err = __dir_mkfile (dir, O_WRITE, 0777 & ~_hurd_umask, &node);