summaryrefslogtreecommitdiffstats
path: root/source3/auth/auth_wbc.c
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-02-25 00:11:31 -0800
committerTim Prouty <tprouty@samba.org>2009-02-25 00:14:23 -0800
commit662f996b1554508baf7344b8618f152c179f1680 (patch)
treeb3f498256e21c9ceabd922f14f082de125122070 /source3/auth/auth_wbc.c
parentdc0e46afb7018a1da666729c6d61e8ea85dcf07d (diff)
downloadsamba-662f996b1554508baf7344b8618f152c179f1680.tar.gz
samba-662f996b1554508baf7344b8618f152c179f1680.tar.xz
samba-662f996b1554508baf7344b8618f152c179f1680.zip
s3: Fix 'assignment differ in signedness' warning
Diffstat (limited to 'source3/auth/auth_wbc.c')
-rw-r--r--source3/auth/auth_wbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_wbc.c b/source3/auth/auth_wbc.c
index b0af9ffb1d2..580c8b550d9 100644
--- a/source3/auth/auth_wbc.c
+++ b/source3/auth/auth_wbc.c
@@ -74,7 +74,7 @@ static NTSTATUS check_wbc_security(const struct auth_context *auth_context,
user_info->internal_username));
params.level = WBC_AUTH_USER_LEVEL_PLAIN;
- params.password.plaintext = user_info->plaintext_password.data;
+ params.password.plaintext = (char *)user_info->plaintext_password.data;
} else {
DEBUG(3,("Checking encrypted password for %s.\n",
user_info->internal_username));