transport.c: introduce core.alternateRefsPrefixes
[gitweb.git] / builtin / hash-object.c
index c532ff9320c751d1db5475add51f2c3c6a8c7146..9ada4f4dfd8747d3888203749f057915f7c9ab46 100644 (file)
@@ -6,10 +6,11 @@
  */
 #include "builtin.h"
 #include "config.h"
+#include "object-store.h"
 #include "blob.h"
 #include "quote.h"
 #include "parse-options.h"
-#include "exec_cmd.h"
+#include "exec-cmd.h"
 
 /*
  * This is to create corrupt objects for debugging and as such it
@@ -24,7 +25,8 @@ static int hash_literally(struct object_id *oid, int fd, const char *type, unsig
        if (strbuf_read(&buf, fd, 4096) < 0)
                ret = -1;
        else
-               ret = hash_sha1_file_literally(buf.buf, buf.len, type, oid, flags);
+               ret = hash_object_file_literally(buf.buf, buf.len, type, oid,
+                                                flags);
        strbuf_release(&buf);
        return ret;
 }