Ignore:
Timestamp:
Jun 9, 2016, 2:17:22 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: apply latest security patches to vendor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/libsmb/clidfs.c

    r917 r919  
    9999        const char *password;
    100100        NTSTATUS status;
     101        int signing_state = get_cmdline_auth_info_signing_state(auth_info);
     102
     103        if (force_encrypt) {
     104                signing_state = Required;
     105        }
    101106
    102107        /* make a copy so we don't modify the global string 'service' */
     
    133138
    134139        /* have to open a new connection */
    135         c = cli_initialise_ex(get_cmdline_auth_info_signing_state(auth_info));
     140        c = cli_initialise_ex(signing_state);
    136141        if (c == NULL) {
    137142                d_printf("Connection to %s failed\n", server_n);
Note: See TracChangeset for help on using the changeset viewer.