Commit ce6d50b9 by Brad Morgan

Changed to use libssh2_channel_exec

parent 05f58131
...@@ -79,12 +79,9 @@ static int send_command(ssh_stream *s) ...@@ -79,12 +79,9 @@ static int send_command(ssh_stream *s)
if (error < 0) if (error < 0)
goto cleanup; goto cleanup;
error = libssh2_channel_process_startup( error = libssh2_channel_exec(
s->channel, s->channel,
"exec", request.ptr
(uint32_t)sizeof("exec") - 1,
request.ptr,
request.size
); );
if (0 != error) if (0 != error)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment