Merge branch 'jc/maint-checkout-index-to-prefix'
[gitweb.git] / builtin-unpack-objects.c
index 7e3ea73006ecdc74c03580ac7297be4ebee174b3..968fda7219807de9985c06eccd0812da04a149ae 100644 (file)
@@ -68,7 +68,7 @@ static void *fill(int min)
                if (ret <= 0) {
                        if (!ret)
                                die("early EOF");
-                       die("read error on input: %s", strerror(errno));
+                       die_errno("read error on input");
                }
                len += ret;
        } while (len < min);
@@ -495,6 +495,8 @@ int cmd_unpack_objects(int argc, const char **argv, const char *prefix)
        int i;
        unsigned char sha1[20];
 
+       read_replace_refs = 0;
+
        git_config(git_default_config, NULL);
 
        quiet = !isatty(2);