X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=builtin-name-rev.c;h=b4f15cc38ab7fa045fc5cf025ca3fd6251a01973;hb=204d409247e7bbc7848569462aa11a87e373c8d6;hp=52886b69b068eca899bea574c5d9790395eeb006;hpb=9befac470b4cfad529032dbcffcb71242ec71f91;p=thirdparty%2Fgit.git diff --git a/builtin-name-rev.c b/builtin-name-rev.c index 52886b69b0..b4f15cc38a 100644 --- a/builtin-name-rev.c +++ b/builtin-name-rev.c @@ -1,4 +1,3 @@ -#include #include "builtin.h" #include "cache.h" #include "commit.h" @@ -75,11 +74,10 @@ copy_data: } } -static int tags_only; - -static int name_ref(const char *path, const unsigned char *sha1) +static int name_ref(const char *path, const unsigned char *sha1, int flags, void *cb_data) { struct object *o = parse_object(sha1); + int tags_only = *(int*)cb_data; int deref = 0; if (tags_only && strncmp(path, "refs/tags/", 10)) @@ -131,6 +129,7 @@ int cmd_name_rev(int argc, const char **argv, const char *prefix) { struct object_array revs = { 0, 0, NULL }; int as_is = 0, all = 0, transform_stdin = 0; + int tags_only = 0; git_config(git_default_config); @@ -186,7 +185,7 @@ int cmd_name_rev(int argc, const char **argv, const char *prefix) add_object_array((struct object *)commit, *argv, &revs); } - for_each_ref(name_ref); + for_each_ref(name_ref, &tags_only); if (transform_stdin) { char buffer[2048];