Changeset 629
- Timestamp:
- Aug 31, 2011, 5:01:21 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/src/smbwrp.c
r627 r629 513 513 cli_set_timeout(c, 10000); /* 10 seconds. */ 514 514 515 if (!NT_STATUS_IS_OK(cli_connect(c, server_n, &ss)))516 {517 return 3;518 }519 520 515 if (pRes->krb5support == 1) 521 516 { 522 517 debuglocal(1,"Kerberos support enabled\n"); 523 518 c->use_kerberos = True; 519 } 520 521 if (!NT_STATUS_IS_OK(cli_connect(c, server_n, &ss))) 522 { 523 return 3; 524 524 } 525 525 … … 535 535 debuglocal(4," session request ok\n"); 536 536 537 if (! cli_negprot(c)) {537 if (!NT_STATUS_IS_OK(cli_negprot(c))) { 538 538 cli_shutdown(c); 539 539 return 5;
Note:
See TracChangeset
for help on using the changeset viewer.