summaryrefslogtreecommitdiff
path: root/monitor.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2005-07-17 17:53:31 +1000
committerDamien Miller <djm@mindrot.org>2005-07-17 17:53:31 +1000
commit04b65335a8248e562bc06136f58c4cccb53c45ca (patch)
treed37b26a16e8dcdb25717681491c38fb78809abd1 /monitor.c
parentb6f72f5294ee8ab476ba59a97e8509ef864c5072 (diff)
- (djm) [monitor.c monitor_wrap.c] -Wsign-compare for PAM monitor calls
Diffstat (limited to 'monitor.c')
-rw-r--r--monitor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/monitor.c b/monitor.c
index 9dca9c803..ef613cd3c 100644
--- a/monitor.c
+++ b/monitor.c
@@ -869,8 +869,8 @@ int
869mm_answer_pam_query(int sock, Buffer *m) 869mm_answer_pam_query(int sock, Buffer *m)
870{ 870{
871 char *name, *info, **prompts; 871 char *name, *info, **prompts;
872 u_int num, *echo_on; 872 u_int i, num, *echo_on;
873 int i, ret; 873 int ret;
874 874
875 debug3("%s", __func__); 875 debug3("%s", __func__);
876 sshpam_authok = NULL; 876 sshpam_authok = NULL;
@@ -903,8 +903,8 @@ int
903mm_answer_pam_respond(int sock, Buffer *m) 903mm_answer_pam_respond(int sock, Buffer *m)
904{ 904{
905 char **resp; 905 char **resp;
906 u_int num; 906 u_int i, num;
907 int i, ret; 907 int ret;
908 908
909 debug3("%s", __func__); 909 debug3("%s", __func__);
910 sshpam_authok = NULL; 910 sshpam_authok = NULL;