Changeset 989 for vendor/current/source3/passdb
- Timestamp:
- Nov 25, 2016, 8:04:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/passdb/pdb_ldap.c
r988 r989 1006 1006 "gecos", 1007 1007 ctx); 1008 if (unix_pw.pw_gecos ) {1008 if (unix_pw.pw_gecos == NULL) { 1009 1009 unix_pw.pw_gecos = fullname; 1010 1010 } … … 1014 1014 "homeDirectory", 1015 1015 ctx); 1016 if (unix_pw.pw_dir ) {1016 if (unix_pw.pw_dir == NULL) { 1017 1017 unix_pw.pw_dir = discard_const_p(char, ""); 1018 1018 } … … 1022 1022 "loginShell", 1023 1023 ctx); 1024 if (unix_pw.pw_shell ) {1024 if (unix_pw.pw_shell == NULL) { 1025 1025 unix_pw.pw_shell = discard_const_p(char, ""); 1026 1026 }
Note:
See TracChangeset
for help on using the changeset viewer.