summaryrefslogtreecommitdiff
path: root/monitor.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-07-23 21:13:40 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-07-23 21:13:40 +0000
commit7cea16bad574cbe60d22204df2e215ab1c8ce9e9 (patch)
treef762f990e129ffa7531cc917a420afce0ab3fc4d /monitor.c
parentb9051ec9a49473b81bcd50868e3367186d919fb2 (diff)
- stevesk@cvs.openbsd.org 2002/07/22 17:32:56
[monitor.c] u_int here; ok provos@
Diffstat (limited to 'monitor.c')
-rw-r--r--monitor.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/monitor.c b/monitor.c
index 148b02e51..7da929c6d 100644
--- a/monitor.c
+++ b/monitor.c
@@ -25,7 +25,7 @@
25 */ 25 */
26 26
27#include "includes.h" 27#include "includes.h"
28RCSID("$OpenBSD: monitor.c,v 1.21 2002/06/27 10:35:47 deraadt Exp $"); 28RCSID("$OpenBSD: monitor.c,v 1.22 2002/07/22 17:32:56 stevesk Exp $");
29 29
30#include <openssl/dh.h> 30#include <openssl/dh.h>
31 31
@@ -587,7 +587,8 @@ mm_answer_authpassword(int socket, Buffer *m)
587{ 587{
588 static int call_count; 588 static int call_count;
589 char *passwd; 589 char *passwd;
590 int authenticated, plen; 590 int authenticated;
591 u_int plen;
591 592
592 passwd = buffer_get_string(m, &plen); 593 passwd = buffer_get_string(m, &plen);
593 /* Only authenticate if the context is valid */ 594 /* Only authenticate if the context is valid */