diff options
author | Michael Adam <obnox@samba.org> | 2008-09-22 10:34:57 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-09-23 10:00:25 +0200 |
commit | 6c8c5d7113fda1a0d6a843f2564e84e2a3daf4c2 (patch) | |
tree | 2b017c2581ff81523ee35d8ba58133c99b2aa6c5 /source3/winbindd | |
parent | fd3ba988dca5014a9a2d5636506265c084e5db97 (diff) | |
download | samba-6c8c5d7113fda1a0d6a843f2564e84e2a3daf4c2.tar.gz samba-6c8c5d7113fda1a0d6a843f2564e84e2a3daf4c2.tar.bz2 samba-6c8c5d7113fda1a0d6a843f2564e84e2a3daf4c2.zip |
[s3]winbind_util: fix an implicit cast compile warning.
Michael
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_util.c b/source3/winbindd/winbindd_util.c index e7b6576317..b296465ed5 100644 --- a/source3/winbindd/winbindd_util.c +++ b/source3/winbindd/winbindd_util.c @@ -1160,7 +1160,7 @@ void parse_add_domuser(void *buf, char *domuser, int *len) } } - safe_strcpy(buf, user, *len); + safe_strcpy((char *)buf, user, *len); } /* Ensure an incoming username from NSS is fully qualified. Replace the |