summaryrefslogtreecommitdiff
path: root/monitor.c
diff options
context:
space:
mode:
Diffstat (limited to 'monitor.c')
-rw-r--r--monitor.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/monitor.c b/monitor.c
index 37d40fcca..9c30c1c39 100644
--- a/monitor.c
+++ b/monitor.c
@@ -744,7 +744,8 @@ mm_answer_skeyquery(int socket, Buffer *m)
744 char challenge[1024]; 744 char challenge[1024];
745 u_int success; 745 u_int success;
746 746
747 success = skeychallenge(&skey, authctxt->user, challenge) < 0 ? 0 : 1; 747 success = _compat_skeychallenge(&skey, authctxt->user, challenge,
748 sizeof(challenge)) < 0 ? 0 : 1;
748 749
749 buffer_clear(m); 750 buffer_clear(m);
750 buffer_put_int(m, success); 751 buffer_put_int(m, success);