summaryrefslogtreecommitdiffabout
path: root/ui-plain.c
authorMark Lodato <lodatom@gmail.com>2010-01-31 04:54:16 (UTC)
committer Mark Lodato <lodatom@gmail.com>2010-01-31 04:54:39 (UTC)
commit89082346d50ec283a16d3127677f30b427781b6a (patch) (side-by-side diff)
tree64396b134f4a3c68a1f68e3fe1e77083cac09b8a /ui-plain.c
parent547a64fbd65de293c290f4e18bbeae958d54aaa7 (diff)
downloadcgit-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>
Diffstat (limited to 'ui-plain.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-plain.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ui-plain.c b/ui-plain.c
index 66cb19c..98e6908 100644
--- a/ui-plain.c
+++ b/ui-plain.c
@@ -7,13 +7,12 @@
*/
#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;
@@ -74,13 +73,12 @@ void cgit_print_plain(struct cgit_context *ctx)
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)) {