diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2014-02-21 17:32:05 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-02-24 18:10:22 +0100 |
commit | 30d6c6eabfefed330bebbed9126fe21bf349fd6b (patch) | |
tree | 8337fc42c2ccc86b47582f75478a92a7fc1a0844 /http.c | |
parent | find_pack_entry(): document last_found_pack (diff) | |
download | git-30d6c6eabfefed330bebbed9126fe21bf349fd6b.tar.xz git-30d6c6eabfefed330bebbed9126fe21bf349fd6b.zip |
sha1_file_name(): declare to return a const string
Change the return value of sha1_file_name() to (const char *).
(Callers have no business mucking about here.) Change callers
accordingly, deleting a few superfluous temporary variables along the
way.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http.c')
-rw-r--r-- | http.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1384,7 +1384,7 @@ struct http_object_request *new_http_object_request(const char *base_url, unsigned char *sha1) { char *hex = sha1_to_hex(sha1); - char *filename; + const char *filename; char prevfile[PATH_MAX]; int prevlocal; char prev_buf[PREV_BUF_SIZE]; |