Changeset 740 for vendor/current/source4/winbind/wb_cmd_getpwnam.c
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified vendor/current/source4/winbind/wb_cmd_getpwnam.c ¶
r414 r740 23 23 #include "libcli/composite/composite.h" 24 24 #include "winbind/wb_server.h" 25 #include "winbind/wb_async_helpers.h"26 25 #include "param/param.h" 27 26 #include "winbind/wb_helper.h" 28 27 #include "smbd/service_task.h" 29 #include "libnet/libnet_proto.h"30 28 #include "libcli/security/security.h" 31 29 … … 127 125 WBSRV_SAMBA3_SET_STRING(pw->pw_gecos, user_info->out.full_name); 128 126 WBSRV_SAMBA3_SET_STRING(pw->pw_dir, 129 lp _template_homedir(state->service->task->lp_ctx));127 lpcfg_template_homedir(state->service->task->lp_ctx)); 130 128 all_string_sub(pw->pw_dir, "%WORKGROUP%", state->workgroup_name, 131 129 sizeof(fstring) - 1); … … 133 131 sizeof(fstring) - 1); 134 132 WBSRV_SAMBA3_SET_STRING(pw->pw_shell, 135 lp _template_shell(state->service->task->lp_ctx));133 lpcfg_template_shell(state->service->task->lp_ctx)); 136 134 137 135 state->group_sid = dom_sid_dup(state, user_info->out.primary_group_sid);
Note:
See TracChangeset
for help on using the changeset viewer.