X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-prune.c;h=6228c7907b183fb686c9f4cc54347c3dc16f3ec4;hb=a2a3bf7b2baf0ff64c5b5ffc78d54be82d9967f1;hp=6a86eb52aedc45b0a59adad4da31341440f2f82e;hpb=3fe5dbf57f2512d29cb72c68bdab98957fda7bb3;p=git.git diff --git a/builtin-prune.c b/builtin-prune.c index 6a86eb52a..6228c7907 100644 --- a/builtin-prune.c +++ b/builtin-prune.c @@ -10,8 +10,8 @@ #include "builtin.h" #include "cache-tree.h" -static const char prune_usage[] = "git prune [-n]"; -static int show_only = 0; +static const char prune_usage[] = "git-prune [-n]"; +static int show_only; static struct rev_info revs; static int prune_object(char *path, const char *filename, const unsigned char *sha1) @@ -106,7 +106,7 @@ static void process_tree(struct tree *tree, obj->flags |= SEEN; if (parse_tree(tree) < 0) die("bad tree object %s", sha1_to_hex(obj->sha1)); - name = strdup(name); + name = xstrdup(name); add_object(obj, p, path, name); me.up = path; me.elem = name;