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 09:10:22 -0800 |
commit | 30d6c6eabfefed330bebbed9126fe21bf349fd6b (patch) | |
tree | 8337fc42c2ccc86b47582f75478a92a7fc1a0844 /http.c | |
parent | 1b1005d1b5da02483a9d275f5df522d4d298cc36 (diff) | |
download | git-30d6c6eabfefed330bebbed9126fe21bf349fd6b.tar.gz |
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]; |