diff options
author | Jeremy Allison <jra@samba.org> | 2011-05-04 11:38:26 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2011-05-04 12:12:15 -0700 |
commit | 8380835fc6de38706d9af29dc7f0fa4cec4f9c90 (patch) | |
tree | 5fdf238d5573c022a135e3f2e5590b656b0d64bf /source3/groupdb | |
parent | df023b8657cab232df88d3656aa5d87676bb7254 (diff) | |
download | samba-8380835fc6de38706d9af29dc7f0fa4cec4f9c90.tar.gz |
Fix warning messages caused by addition of null check in fstrcpy macro.
Diffstat (limited to 'source3/groupdb')
-rw-r--r-- | source3/groupdb/mapping.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/groupdb/mapping.c b/source3/groupdb/mapping.c index 3646e04d0a3..d35f3c5f34d 100644 --- a/source3/groupdb/mapping.c +++ b/source3/groupdb/mapping.c @@ -777,8 +777,8 @@ NTSTATUS pdb_create_builtin_alias(uint32 rid) map.gid = gid; sid_copy(&map.sid, &sid); map.sid_name_use = SID_NAME_ALIAS; - fstrcpy(map.nt_name, groupname); - fstrcpy(map.comment, ""); + strlcpy(map.nt_name, groupname, sizeof(map.nt_name)); + strlcpy(map.comment, "", sizeof(map.comment)); status = pdb_add_group_mapping_entry(&map); |