aboutsummaryrefslogtreecommitdiff
path: root/builtin-push.c
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2007-03-10 03:27:52 -0500
committerJunio C Hamano <junkio@cox.net>2007-03-11 22:49:31 -0700
commitafdb269c76cb965cf8bbb1012c2ec0e2bf7172b1 (patch)
tree5a6a5095a52e312ded625afa8187440a090f0cc7 /builtin-push.c
parent497bdc88d661b3da15fdd5365293381bd66010c9 (diff)
downloadgit-afdb269c76cb965cf8bbb1012c2ec0e2bf7172b1.tar.gz
git-afdb269c76cb965cf8bbb1012c2ec0e2bf7172b1.tar.xz
Remove unused run_command variants
We don't actually use these va_list based variants of run_command anymore. I'm removing them before I make further improvements. Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-push.c')
-rw-r--r--builtin-push.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-push.c b/builtin-push.c
index 979efcc45..6ab9a28e8 100644
--- a/builtin-push.c
+++ b/builtin-push.c
@@ -336,7 +336,7 @@ static int do_push(const char *repo)
argv[dest_argc] = NULL;
if (verbose)
fprintf(stderr, "Pushing to %s\n", dest);
- err = run_command_v(argv);
+ err = run_command_v_opt(argv, 0);
if (!err)
continue;
switch (err) {