another alignment of client challenge: this one in lsa_io_q_auth_2().
authorLuke Leighton <lkcl@samba.org>
Mon, 13 Oct 1997 19:37:43 +0000 (19:37 +0000)
committerLuke Leighton <lkcl@samba.org>
Mon, 13 Oct 1997 19:37:43 +0000 (19:37 +0000)
there are going to be a few of these...

source/lsaparse.c

index 3c18f5b71d586784b0577b05960ebdfc05fba502..aed110f1b45c6110f55c2be4332223e2aea20019 100644 (file)
@@ -287,7 +287,8 @@ char* lsa_io_q_auth_2(BOOL io, LSA_Q_AUTH_2 *q_a, char *q, char *base, int align
        q = align_offset(q, base, align);
     
        q = smb_io_log_info (io, &(q_a->clnt_id), q, base, align, depth); /* client identification info */
-       q = smb_io_chal     (io, &(q_a->clnt_chal), q, base, align, depth); /* client-calculated credentials */
+       /* client challenge is _not_ aligned */
+       q = smb_io_chal     (io, &(q_a->clnt_chal), q, base, 0, depth); /* client-calculated credentials */
        q = smb_io_neg_flags(io, &(q_a->clnt_flgs), q, base, align, depth);
 
        return q;