Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
* maint:
  Use dashless git commands in setgitperms.perl
  git-remote: do not use user input in a printf format string
  • Loading branch information
Junio C Hamano committed Sep 22, 2008
2 parents 2beec89 + 18309f4 commit c76dc95
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
18 changes: 8 additions & 10 deletions builtin-remote.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,14 +407,15 @@ static int rm(int argc, const char **argv)
return i;
}

static void show_list(const char *title, struct string_list *list)
static void show_list(const char *title, struct string_list *list,
const char *extra_arg)
{
int i;

if (!list->nr)
return;

printf(title, list->nr > 1 ? "es" : "");
printf(title, list->nr > 1 ? "es" : "", extra_arg);
printf("\n ");
for (i = 0; i < list->nr; i++)
printf("%s%s", i ? " " : "", list->items[i].string);
Expand Down Expand Up @@ -477,7 +478,6 @@ static int show(int argc, const char **argv)

memset(&states, 0, sizeof(states));
for (; argc; argc--, argv++) {
struct strbuf buf;
int i;

get_remote_ref_states(*argv, &states, !no_query);
Expand All @@ -503,18 +503,16 @@ static int show(int argc, const char **argv)
}

if (!no_query) {
strbuf_init(&buf, 0);
strbuf_addf(&buf, " New remote branch%%s (next fetch "
"will store in remotes/%s)", states.remote->name);
show_list(buf.buf, &states.new);
strbuf_release(&buf);
show_list(" New remote branch%s (next fetch "
"will store in remotes/%s)",
&states.new, states.remote->name);
show_list(" Stale tracking branch%s (use 'git remote "
"prune')", &states.stale);
"prune')", &states.stale, "");
}

if (no_query)
for_each_ref(append_ref_to_tracked_list, &states);
show_list(" Tracked remote branch%s", &states.tracked);
show_list(" Tracked remote branch%s", &states.tracked, "");

if (states.remote->push_refspec_nr) {
printf(" Local branch%s pushed with 'git push'\n ",
Expand Down
4 changes: 2 additions & 2 deletions contrib/hooks/setgitperms.perl
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
)) { die $usage; }
die $usage unless ($read_mode xor $write_mode);

my $topdir = `git-rev-parse --show-cdup` or die "\n"; chomp $topdir;
my $topdir = `git rev-parse --show-cdup` or die "\n"; chomp $topdir;
my $gitdir = $topdir . '.git';
my $gitmeta = $topdir . '.gitmeta';

Expand Down Expand Up @@ -155,7 +155,7 @@
open (OUT, ">$gitmeta.tmp") or die "Could not open $gitmeta.tmp for writing: $!\n";
}

my @files = `git-ls-files`;
my @files = `git ls-files`;
my %dirs;

foreach my $path (@files) {
Expand Down

0 comments on commit c76dc95

Please sign in to comment.