summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2014-06-24 05:46:05 -0400
committerJunio C Hamano <gitster@pobox.com>2014-06-25 15:28:01 -0700
commit36857e0026f5a7855f941a955bf7014408a816dd (patch)
tree1f7863592d5289460a4888341497cb2baaecd45f
parent28bf9429ef2e1534be8d3a59ad236834be542b86 (diff)
downloadgit-cc/replace-edit.tar.gz
replace: use argv_array in export_objectcc/replace-edit
This is a little more verbose, but will make it easier to make parts of our command-line conditional (without resorting to magic numbers or lots of NULLs to get an appropriately sized argv array). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--builtin/replace.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/builtin/replace.c b/builtin/replace.c
index eb1d2ec5e5..25841708fa 100644
--- a/builtin/replace.c
+++ b/builtin/replace.c
@@ -193,15 +193,17 @@ static int replace_object(const char *object_ref, const char *replace_ref, int f
*/
static void export_object(const unsigned char *sha1, const char *filename)
{
- const char *argv[] = { "--no-replace-objects", "cat-file", "-p", NULL, NULL };
- struct child_process cmd = { argv };
+ struct child_process cmd = { NULL };
int fd;
fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0666);
if (fd < 0)
die_errno("unable to open %s for writing", filename);
- argv[3] = sha1_to_hex(sha1);
+ argv_array_push(&cmd.args, "--no-replace-objects");
+ argv_array_push(&cmd.args, "cat-file");
+ argv_array_push(&cmd.args, "-p");
+ argv_array_push(&cmd.args, sha1_to_hex(sha1));
cmd.git_cmd = 1;
cmd.out = fd;