Ignore:
Timestamp:
Nov 25, 2016, 8:04:54 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/passdb/pdb_ldap.c

    r988 r989  
    10061006                                "gecos",
    10071007                                ctx);
    1008                 if (unix_pw.pw_gecos) {
     1008                if (unix_pw.pw_gecos == NULL) {
    10091009                        unix_pw.pw_gecos = fullname;
    10101010                }
     
    10141014                                "homeDirectory",
    10151015                                ctx);
    1016                 if (unix_pw.pw_dir) {
     1016                if (unix_pw.pw_dir == NULL) {
    10171017                        unix_pw.pw_dir = discard_const_p(char, "");
    10181018                }
     
    10221022                                "loginShell",
    10231023                                ctx);
    1024                 if (unix_pw.pw_shell) {
     1024                if (unix_pw.pw_shell == NULL) {
    10251025                        unix_pw.pw_shell = discard_const_p(char, "");
    10261026                }
Note: See TracChangeset for help on using the changeset viewer.