diff options
author | Linus Torvalds <torvalds@osdl.org> | 2006-07-11 10:10:29 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-11 12:58:53 -0700 |
commit | 38d3874ddc5c15120c7fbbdcad26bf5478f58e98 (patch) | |
tree | 9030e174230d82c8dcaa6da66e95b2b5acfdfa32 /sha1_file.c | |
parent | d2216f231782b37c6379a533d4d845534651e93b (diff) | |
download | git-38d3874ddc5c15120c7fbbdcad26bf5478f58e98.tar.gz git-38d3874ddc5c15120c7fbbdcad26bf5478f58e98.tar.xz |
Make the unpacked object header functions static to sha1_file.c
Nobody else uses them, and I'm going to start changing them.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sha1_file.c b/sha1_file.c index 459430a56..8734d501f 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -684,7 +684,7 @@ static void *map_sha1_file_internal(const unsigned char *sha1, return map; } -int unpack_sha1_header(z_stream *stream, void *map, unsigned long mapsize, void *buffer, unsigned long size) +static int unpack_sha1_header(z_stream *stream, void *map, unsigned long mapsize, void *buffer, unsigned long size) { /* Get the data stream */ memset(stream, 0, sizeof(*stream)); @@ -720,7 +720,7 @@ static void *unpack_sha1_rest(z_stream *stream, void *buffer, unsigned long size * too permissive for what we want to check. So do an anal * object header parse by hand. */ -int parse_sha1_header(char *hdr, char *type, unsigned long *sizep) +static int parse_sha1_header(char *hdr, char *type, unsigned long *sizep) { int i; unsigned long size; |