fixup??? mingw: when path_lookup() failed, try BusyBox

argv_array was renamed to strvec.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin
2020-08-10 13:39:19 +02:00
committed by Derrick Stolee
parent 77982caf26
commit b1bcf0b5e9

View File

@@ -1565,7 +1565,7 @@ static char *is_busybox_applet(const char *cmd)
struct strbuf buf = STRBUF_INIT;
char *p;
argv_array_pushl(&cp.args, busybox_path, "--help", NULL);
strvec_pushl(&cp.args, busybox_path, "--help", NULL);
if (capture_command(&cp, &buf, 2048)) {
string_list_append(&applets, "");