diff options
-rw-r--r-- | clone-pack.c | 2 | ||||
-rw-r--r-- | sha1_file.c | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/clone-pack.c b/clone-pack.c index 4f4975b4a..960921903 100644 --- a/clone-pack.c +++ b/clone-pack.c @@ -211,7 +211,7 @@ static int clone_without_unpack(int fd[2]) ifd = fd[0]; snprintf(tmpfile, sizeof(tmpfile), - "%s/pack-XXXXXX", get_object_directory()); + "%s/pack/tmp-XXXXXX", get_object_directory()); ofd = mkstemp(tmpfile); if (ofd < 0) return error("unable to create temporary file %s", tmpfile); diff --git a/sha1_file.c b/sha1_file.c index e45679975..7fdc46969 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -1239,11 +1239,14 @@ int move_temp_to_file(const char *tmpfile, char *filename) * won't be able to check collisions, but that's not a * big deal. * + * The same holds for FAT formatted media. + * * When this succeeds, we just return 0. We have nothing * left to unlink. */ - if (ret == EXDEV && !rename(tmpfile, filename)) + if ((ret == EXDEV || ret == ENOTSUP) && !rename(tmpfile, filename)) return 0; + ret = errno; } unlink(tmpfile); if (ret) { |