Skip to content

Commit

Permalink
fix NTLM2 backport
Browse files Browse the repository at this point in the history
  • Loading branch information
freddy77 committed Sep 13, 2006
1 parent c93ec35 commit 2ee99c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Wed Sep 13 11:55:20 CET 2006 Frediano Ziglio <freddy77_A_gmail_D_com>
* src/tds/login.c: fix NTLM2 backport

Wed Sep 13 11:48:44 CET 2006 Frediano Ziglio <freddy77_A_gmail_D_com>
* src/tds/token.c:
- fix really broken tds5_process_result
Expand Down
4 changes: 2 additions & 2 deletions src/tds/login.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#include <dmalloc.h>
#endif

TDS_RCSID(var, "$Id: login.c,v 1.148.2.1 2006-09-13 07:49:42 freddy77 Exp $");
TDS_RCSID(var, "$Id: login.c,v 1.148.2.2 2006-09-13 09:56:03 freddy77 Exp $");

static int tds_send_login(TDSSOCKET * tds, TDSCONNECTION * connection);
static int tds8_do_login(TDSSOCKET * tds, TDSCONNECTION * connection);
Expand Down Expand Up @@ -755,7 +755,7 @@ tds7_send_login(TDSSOCKET * tds, TDSCONNECTION * connection)
/* sequence 1 client -> server */
tds_put_int(tds, 1);
/* flags */
tds_put_int(tds, 0xb201);
tds_put_int(tds, 0x8b201);

/* domain info */
tds_put_smallint(tds, domain_len);
Expand Down

0 comments on commit 2ee99c3

Please sign in to comment.