diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-09-21 14:41:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:39 -0500 |
commit | b1ad4a27cb7f7a0169c4f6a3756462912a9fa8e6 (patch) | |
tree | acdf682f7ca428d83f41ae7685abe476fd4b0c6d /source4/auth | |
parent | 7a545880d796ba76ebfd07472db92ddee93c875a (diff) | |
download | samba-b1ad4a27cb7f7a0169c4f6a3756462912a9fa8e6.tar.gz samba-b1ad4a27cb7f7a0169c4f6a3756462912a9fa8e6.tar.bz2 samba-b1ad4a27cb7f7a0169c4f6a3756462912a9fa8e6.zip |
r10390: Remove fstring, pstring and uint32_t from winbindd_nss.h.
Volker
(This used to be commit 3dc7e67dc5e5844523e9768081123c622e61c7e9)
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/auth_winbind.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/auth/auth_winbind.c b/source4/auth/auth_winbind.c index 878e706b9b..263aef8cc9 100644 --- a/source4/auth/auth_winbind.c +++ b/source4/auth/auth_winbind.c @@ -71,12 +71,12 @@ static NTSTATUS winbind_check_password(struct auth_method_context *ctx, ZERO_STRUCT(request); ZERO_STRUCT(response); request.flags = WBFLAG_PAM_INFO3_NDR; - fstrcpy(request.data.auth_crap.user, - user_info->client.account_name); - fstrcpy(request.data.auth_crap.domain, - user_info->client.domain_name); - fstrcpy(request.data.auth_crap.workstation, - user_info->workstation_name); + winbind_strcpy(request.data.auth_crap.user, + user_info->client.account_name); + winbind_strcpy(request.data.auth_crap.domain, + user_info->client.domain_name); + winbind_strcpy(request.data.auth_crap.workstation, + user_info->workstation_name); memcpy(request.data.auth_crap.chal, ctx->auth_ctx->challenge.data.data, sizeof(request.data.auth_crap.chal)); |