mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 16:24:39 +02:00
Supply missing third arg in skey.
During the change to the new buffer api the third arg to sshbuf_get_cstring was ommitted. Fixes build when configured with skey.
This commit is contained in:
parent
380320bb72
commit
7aab109b8b
@ -903,7 +903,7 @@ mm_skey_query(void *ctx, char **name, char **infotxt,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Get the challenge, and format the response */
|
/* Get the challenge, and format the response */
|
||||||
if ((r = sshbuf_get_cstring(m, &challenge)) != 0)
|
if ((r = sshbuf_get_cstring(m, &challenge, NULL)) != 0)
|
||||||
fatal("%s: buffer error: %s", __func__, ssh_err(r));
|
fatal("%s: buffer error: %s", __func__, ssh_err(r));
|
||||||
sshbuf_free(m);
|
sshbuf_free(m);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user