transport: simplify fetch_objs_via_rsync() using argv_array
commite929f515faaa44deed9057cdbaf8e44b3d855333
authorRené Scharfe <l.s.r@web.de>
Fri, 18 Jul 2014 15:12:34 +0000 (18 17:12 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 18 Jul 2014 18:15:23 +0000 (18 11:15 -0700)
tree06ae31eeb41a6d3db4331296b050a677238b45bb
parentd1d094564ac818a79465f249ca765ab7ef97d443
transport: simplify fetch_objs_via_rsync() using argv_array

Use the existing argv_array member instead of building the arguments
list using a string array and a strbuf.  This way we don't need magic
number constants and allocations are cleaned up for us automatically
by run_command().

Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
transport.c