summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2002-03-31 12:49:38 -0800
committerTim Rice <tim@multitalents.net>2002-03-31 12:49:38 -0800
commitc85496222b42d3c30fea50434efbd42c11361427 (patch)
treeb010cf97d7e7dce19af612fec3392afe5784d61f
parent49e457c43b1c882d7313ae29b843b374b61e61d4 (diff)
[sshconnect2.c] change uint32_t to u_int32_t
-rw-r--r--ChangeLog3
-rw-r--r--sshconnect2.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index eeee1958b..5bf26bd89 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
120020331 120020331
2 - (tim) [configure.ac] use /bin/test -L to work around broken builtin on 2 - (tim) [configure.ac] use /bin/test -L to work around broken builtin on
3 Solaris 8 3 Solaris 8
4 - (tim) [sshconnect2.c] change uint32_t to u_int32_t
4 5
520020330 620020330
6 - (stevesk) [configure.ac] remove header check for sys/ttcompat.h 7 - (stevesk) [configure.ac] remove header check for sys/ttcompat.h
@@ -8097,4 +8098,4 @@
8097 - Wrote replacements for strlcpy and mkdtemp 8098 - Wrote replacements for strlcpy and mkdtemp
8098 - Released 1.0pre1 8099 - Released 1.0pre1
8099 8100
8100$Id: ChangeLog,v 1.2003 2002/03/31 19:23:06 tim Exp $ 8101$Id: ChangeLog,v 1.2004 2002/03/31 20:49:38 tim Exp $
diff --git a/sshconnect2.c b/sshconnect2.c
index d8e1df5ca..1ee92ab0d 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -472,7 +472,7 @@ userauth_passwd(Authctxt *authctxt)
472 * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST 472 * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
473 */ 473 */
474void 474void
475input_userauth_passwd_changereq(int type, uint32_t seqnr, void *ctxt) 475input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
476{ 476{
477 Authctxt *authctxt = ctxt; 477 Authctxt *authctxt = ctxt;
478 char *info, *lang, *password = NULL, *retype = NULL; 478 char *info, *lang, *password = NULL, *retype = NULL;