Changeset 342 for branches/samba-3.3.x/source/libsmb/libsmb_context.c
- Timestamp:
- Oct 30, 2009, 9:39:05 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/libsmb/libsmb_context.c
r222 r342 656 656 const char *signing_state = "off"; 657 657 658 if (!context || 659 ! workgroup || ! *workgroup || 660 ! user || ! *user || 661 ! password || ! *password) { 658 if (! context) { 662 659 663 660 return; 664 661 } 665 662 663 if (! workgroup || ! *workgroup) { 664 workgroup = smbc_getWorkgroup(context); 665 } 666 667 if (! user) { 668 user = smbc_getUser(context); 669 } 670 671 if (! password) { 672 password = ""; 673 } 674 666 675 if (smbc_getOptionUseKerberos(context)) { 667 676 use_kerberos = True;
Note:
See TracChangeset
for help on using the changeset viewer.