From c2c877b70bd04157612a32bf1bcc9f09490c1af0 Mon Sep 17 00:00:00 2001 From: Marc Hoersken Date: Wed, 16 Mar 2022 22:54:33 +0100 Subject: [PATCH] tests/openssh_fixture.c: print command after variable expansion --- tests/openssh_fixture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/openssh_fixture.c b/tests/openssh_fixture.c index 1baf2052..c6484ba5 100644 --- a/tests/openssh_fixture.c +++ b/tests/openssh_fixture.c @@ -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