X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=hash-object.c;h=43bd93bffb3f5e0b7b19a62865347a421d6a56a3;hb=ae448e3854d8b6e7e37aa88fa3917f5dd97f3210;hp=6502b5b3d1307a4cd7e8761c96aa7ecd5e70559f;hpb=b4a081b428c607f98c5d0a0eec8d543dc1f2abcd;p=git.git diff --git a/hash-object.c b/hash-object.c index 6502b5b3..43bd93bf 100644 --- a/hash-object.c +++ b/hash-object.c @@ -2,9 +2,10 @@ * GIT - The information manager from hell * * Copyright (C) Linus Torvalds, 2005 - * Copyright (C) Junio C Hamano, 2005 + * Copyright (C) Junio C Hamano, 2005 */ #include "cache.h" +#include "blob.h" static void hash_object(const char *path, const char *type, int write_object) { @@ -35,7 +36,7 @@ static const char hash_object_usage[] = int main(int argc, char **argv) { int i; - const char *type = "blob"; + const char *type = blob_type; int write_object = 0; const char *prefix = NULL; int prefix_length = -1;