1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-11-06 20:49:29 +03:00

tests/openssh_fixture.c: print command after variable expansion

This commit is contained in:
Marc Hoersken
2022-03-16 22:54:33 +01:00
parent 87d208c95d
commit c2c877b70b

View File

@@ -91,7 +91,7 @@ static int run_command_varg(char **output, const char *command, va_list args)
return -1;
}
fprintf(stdout, "Command: %s\n", command);
fprintf(stdout, "Command: %s\n", command_buf);
#ifdef WIN32
pipe = _popen(buf, "r");
#else