comparison svr-authpasswd.c @ 182:aeca43462eee

merge of 954df0829153a81396cf111410fae269457c3ad6 and d7e8c6af971415504a2b626bf6dc1a4d50cdc5d7
author Matt Johnston <matt@ucc.asn.au>
date Sun, 13 Mar 2005 16:23:19 +0000
parents 161557a9dde8
children 740e782679be 4317be8b7cf9
comparison
equal deleted inserted replaced
180:743fce568f49 182:aeca43462eee
69 send_msg_userauth_failure(0, 1); 69 send_msg_userauth_failure(0, 1);
70 return; 70 return;
71 } 71 }
72 72
73 /* check if client wants to change password */ 73 /* check if client wants to change password */
74 changepw = buf_getbyte(ses.payload); 74 changepw = buf_getbool(ses.payload);
75 if (changepw) { 75 if (changepw) {
76 /* not implemented by this server */ 76 /* not implemented by this server */
77 send_msg_userauth_failure(0, 1); 77 send_msg_userauth_failure(0, 1);
78 return; 78 return;
79 } 79 }