]> wimlib.net Git - wimlib/commitdiff
unix_apply.c: Allow creating symlinks and hardlinks over existing files
authorEric Biggers <ebiggers3@gmail.com>
Thu, 15 Aug 2013 20:07:57 +0000 (15:07 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Thu, 15 Aug 2013 20:07:57 +0000 (15:07 -0500)
src/unix_apply.c

index fd5d972d404de454bef7dbb28d5a6b26d06977a0..bd576ef08c0f872f04ceb77b940bde72fa67b64a 100644 (file)
@@ -81,21 +81,33 @@ unix_create_directory(const tchar *path, struct apply_ctx *ctx)
 }
 
 static int
-unix_create_hardlink(const tchar *oldpath, const tchar *newpath,
-                    struct apply_ctx *ctx)
+unix_makelink(const tchar *oldpath, const tchar *newpath,
+             int (*makelink)(const tchar *oldpath, const tchar *newpath))
 {
-       if (link(oldpath, newpath))
+       if ((*makelink)(oldpath, newpath)) {
+               if (errno == EEXIST) {
+                       if (unlink(newpath))
+                               return WIMLIB_ERR_LINK;
+                       if ((*makelink)(oldpath, newpath))
+                               return WIMLIB_ERR_LINK;
+                       return 0;
+               }
                return WIMLIB_ERR_LINK;
+       }
        return 0;
 }
+static int
+unix_create_hardlink(const tchar *oldpath, const tchar *newpath,
+                    struct apply_ctx *ctx)
+{
+       return unix_makelink(oldpath, newpath, link);
+}
 
 static int
 unix_create_symlink(const tchar *oldpath, const tchar *newpath,
                    struct apply_ctx *ctx)
 {
-       if (symlink(oldpath, newpath))
-               return WIMLIB_ERR_LINK;
-       return 0;
+       return unix_makelink(oldpath, newpath, symlink);
 }
 
 static int