summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 29f049a)
raw | patch | inline | side by side (parent: 29f049a)
author | Rene Scharfe <rene.scharfe@lsrfire.ath.cx> | |
Sun, 15 Oct 2006 12:02:03 +0000 (14:02 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sun, 15 Oct 2006 19:35:07 +0000 (12:35 -0700) |
Move file name generation from write_sha1_file_prepare() to the one
caller that cares and make it a void function.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <junkio@cox.net>
caller that cares and make it a void function.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <junkio@cox.net>
sha1_file.c | patch | blob | history |
diff --git a/sha1_file.c b/sha1_file.c
index d111be74a334dc2a0ce7de19df2ce7909c985450..66cc7679cef829bfad1bdb599800b6d603a89f52 100644 (file)
--- a/sha1_file.c
+++ b/sha1_file.c
}
}
-static char *write_sha1_file_prepare(void *buf, unsigned long len,
- const char *type, unsigned char *sha1,
- unsigned char *hdr, int *hdrlen)
+static void write_sha1_file_prepare(void *buf, unsigned long len,
+ const char *type, unsigned char *sha1,
+ unsigned char *hdr, int *hdrlen)
{
SHA_CTX c;
SHA1_Update(&c, hdr, *hdrlen);
SHA1_Update(&c, buf, len);
SHA1_Final(sha1, &c);
-
- return sha1_file_name(sha1);
}
/*
@@ -1521,7 +1519,8 @@ int write_sha1_file(void *buf, unsigned long len, const char *type, unsigned cha
/* Normally if we have it in the pack then we do not bother writing
* it out into .git/objects/??/?{38} file.
*/
- filename = write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
+ write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
+ filename = sha1_file_name(sha1);
if (returnsha1)
hashcpy(returnsha1, sha1);
if (has_sha1_file(sha1))