diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-03 10:01:38 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-03 10:01:38 -0700 |
commit | 944d858969e4e14adefdd8f21fac5c8ab45f83f7 (patch) | |
tree | 26f45f4e5544838e40132f579fb86f9ff006688f /receive-pack.c | |
parent | Fix gcc warning in send-pack.c (diff) | |
download | tgif-944d858969e4e14adefdd8f21fac5c8ab45f83f7.tar.xz |
Fix up "for_each_ref()" to be more usable, and use it in git-fsck-cache
It needed to take the GIT_DIR information into account, something that
the original receive-pack usage just never cared about.
Diffstat (limited to 'receive-pack.c')
-rw-r--r-- | receive-pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/receive-pack.c b/receive-pack.c index 53d00a5e7a..d05f7d5ec4 100644 --- a/receive-pack.c +++ b/receive-pack.c @@ -7,7 +7,7 @@ static const char receive_pack_usage[] = "git-receive-pack <git-dir>"; static const char *unpacker = "git-unpack-objects"; -static int show_ref(const char *path, unsigned char *sha1) +static int show_ref(const char *path, const unsigned char *sha1) { packet_write(1, "%s %s\n", sha1_to_hex(sha1), path); return 0; |