author | Mark Lodato <lodatom@gmail.com> | 2010-01-31 04:54:16 (UTC) |
---|---|---|
committer | Mark Lodato <lodatom@gmail.com> | 2010-01-31 04:54:39 (UTC) |
commit | 89082346d50ec283a16d3127677f30b427781b6a (patch) (side-by-side diff) | |
tree | 64396b134f4a3c68a1f68e3fe1e77083cac09b8a | |
parent | 547a64fbd65de293c290f4e18bbeae958d54aaa7 (diff) | |
download | cgit-89082346d50ec283a16d3127677f30b427781b6a.zip cgit-89082346d50ec283a16d3127677f30b427781b6a.tar.gz cgit-89082346d50ec283a16d3127677f30b427781b6a.tar.bz2 |
ui-plain: remove unused curr_rev variable
Signed-off-by: Mark Lodato <lodatom@gmail.com>
-rw-r--r-- | ui-plain.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -1,25 +1,24 @@ /* ui-plain.c: functions for output of plain blobs by path * * Copyright (C) 2008 Lars Hjemli * * Licensed under GNU General Public License v2 * (see COPYING for full license text) */ #include "cgit.h" #include "html.h" #include "ui-shared.h" -char *curr_rev; char *match_path; int match; static void print_object(const unsigned char *sha1, const char *path) { enum object_type type; char *buf, *ext; unsigned long size; struct string_list_item *mime; type = sha1_object_info(sha1, &size); if (type == OBJ_BAD) { @@ -68,25 +67,24 @@ static int walk_tree(const unsigned char *sha1, const char *base, int baselen, } void cgit_print_plain(struct cgit_context *ctx) { const char *rev = ctx->qry.sha1; unsigned char sha1[20]; struct commit *commit; const char *paths[] = {ctx->qry.path, NULL}; if (!rev) rev = ctx->qry.head; - curr_rev = xstrdup(rev); if (get_sha1(rev, sha1)) { html_status(404, "Not found", 0); return; } commit = lookup_commit_reference(sha1); if (!commit || parse_commit(commit)) { html_status(404, "Not found", 0); return; } match_path = ctx->qry.path; read_tree_recursive(commit->tree, "", 0, 0, paths, walk_tree, NULL); if (!match) |