diff options
| author | Lukas Fleischer <cgit@cryptocrack.de> | 2013-03-03 16:45:14 +0100 | 
|---|---|---|
| committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2013-03-04 09:12:55 -0500 | 
| commit | fb5a37317de9532509b9c398916c0290212ae233 (patch) | |
| tree | 985d502d8122b83657943ac756db8386aba8401a | |
| parent | b1db30cd2577fb59fb4490a284e0a34a0345cc02 (diff) | |
| download | cgit-fb5a37317de9532509b9c398916c0290212ae233.tar.gz cgit-fb5a37317de9532509b9c398916c0290212ae233.tar.bz2 cgit-fb5a37317de9532509b9c398916c0290212ae233.zip | |
ui-tree.c: Pass current revision to print_object()
No longer access the global curr_rev variable in print_object().
This will make it easier to squash the curr_rev variable into a context
structure without having to pass the context to the print_object()
function.
Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
| -rw-r--r-- | ui-tree.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| @@ -84,7 +84,7 @@ static void print_binary_buffer(char *buf, unsigned long size)  	html("</table>\n");  } -static void print_object(const unsigned char *sha1, char *path, const char *basename) +static void print_object(const unsigned char *sha1, char *path, const char *basename, const char *rev)  {  	enum object_type type;  	char *buf; @@ -106,7 +106,7 @@ static void print_object(const unsigned char *sha1, char *path, const char *base  	htmlf("blob: %s (", sha1_to_hex(sha1));  	cgit_plain_link("plain", NULL, NULL, ctx.qry.head, -		        curr_rev, path); +		        rev, path);  	html(")\n");  	if (ctx.cfg.max_blob_size && size / 1024 > ctx.cfg.max_blob_size) { @@ -237,7 +237,7 @@ static int walk_tree(const unsigned char *sha1, const char *base, int baselen,  			ls_head();  			return READ_TREE_RECURSIVE;  		} else { -			print_object(sha1, buffer, pathname); +			print_object(sha1, buffer, pathname, curr_rev);  			return 0;  		}  	} | 
