diff options
Diffstat (limited to 'ui-blob.c')
-rw-r--r-- | ui-blob.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -17,7 +17,7 @@ static int found_path; | |||
17 | 17 | ||
18 | static int walk_tree(const unsigned char *sha1, const char *base, int baselen, | 18 | static int walk_tree(const unsigned char *sha1, const char *base, int baselen, |
19 | const char *pathname, unsigned mode, int stage, void *cbdata) { | 19 | const char *pathname, unsigned mode, int stage, void *cbdata) { |
20 | if(strncmp(base, match_path, baselen) | 20 | if (strncmp(base, match_path, baselen) |
21 | || strcmp(match_path + baselen, pathname)) | 21 | || strcmp(match_path + baselen, pathname)) |
22 | return READ_TREE_RECURSIVE; | 22 | return READ_TREE_RECURSIVE; |
23 | memmove(matched_sha1, sha1, 20); | 23 | memmove(matched_sha1, sha1, 20); |
@@ -43,7 +43,7 @@ int cgit_print_file(char *path, const char *head) | |||
43 | if (get_sha1(head, sha1)) | 43 | if (get_sha1(head, sha1)) |
44 | return -1; | 44 | return -1; |
45 | type = sha1_object_info(sha1, &size); | 45 | type = sha1_object_info(sha1, &size); |
46 | if(type == OBJ_COMMIT && path) { | 46 | if (type == OBJ_COMMIT && path) { |
47 | commit = lookup_commit_reference(sha1); | 47 | commit = lookup_commit_reference(sha1); |
48 | match_path = path; | 48 | match_path = path; |
49 | matched_sha1 = sha1; | 49 | matched_sha1 = sha1; |
@@ -80,7 +80,7 @@ void cgit_print_blob(const char *hex, char *path, const char *head) | |||
80 | }; | 80 | }; |
81 | 81 | ||
82 | if (hex) { | 82 | if (hex) { |
83 | if (get_sha1_hex(hex, sha1)){ | 83 | if (get_sha1_hex(hex, sha1)) { |
84 | cgit_print_error(fmt("Bad hex value: %s", hex)); | 84 | cgit_print_error(fmt("Bad hex value: %s", hex)); |
85 | return; | 85 | return; |
86 | } | 86 | } |
@@ -93,7 +93,7 @@ void cgit_print_blob(const char *hex, char *path, const char *head) | |||
93 | 93 | ||
94 | type = sha1_object_info(sha1, &size); | 94 | type = sha1_object_info(sha1, &size); |
95 | 95 | ||
96 | if((!hex) && type == OBJ_COMMIT && path) { | 96 | if ((!hex) && type == OBJ_COMMIT && path) { |
97 | commit = lookup_commit_reference(sha1); | 97 | commit = lookup_commit_reference(sha1); |
98 | match_path = path; | 98 | match_path = path; |
99 | matched_sha1 = sha1; | 99 | matched_sha1 = sha1; |