diff options
author | Jason A. Donenfeld | 2013-03-03 23:21:33 -0500 |
---|---|---|
committer | Jason A. Donenfeld | 2013-03-04 09:12:54 -0500 |
commit | bdae1d8a8d39206ac75ab86f8e9ef53b2f29432e (patch) | |
tree | 683306f79bd96a45566879acd21e5ff085120acd /ui-blob.c | |
parent | 53bc747d311d18642fa3ad0cc0de34f3899ed1f4 (diff) | |
download | cgit-bdae1d8a8d39206ac75ab86f8e9ef53b2f29432e.tar.gz cgit-bdae1d8a8d39206ac75ab86f8e9ef53b2f29432e.tar.bz2 cgit-bdae1d8a8d39206ac75ab86f8e9ef53b2f29432e.zip |
White space around control verbs.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
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; |