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/winbindd/idmap_hash | |
parent | df023b8657cab232df88d3656aa5d87676bb7254 (diff) | |
download | samba-8380835fc6de38706d9af29dc7f0fa4cec4f9c90.tar.gz samba-8380835fc6de38706d9af29dc7f0fa4cec4f9c90.tar.bz2 samba-8380835fc6de38706d9af29dc7f0fa4cec4f9c90.zip |
Fix warning messages caused by addition of null check in fstrcpy macro.
Diffstat (limited to 'source3/winbindd/idmap_hash')
-rw-r--r-- | source3/winbindd/idmap_hash/mapfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/idmap_hash/mapfile.c b/source3/winbindd/idmap_hash/mapfile.c index 2828059093..1183328a3f 100644 --- a/source3/winbindd/idmap_hash/mapfile.c +++ b/source3/winbindd/idmap_hash/mapfile.c @@ -87,8 +87,8 @@ static bool mapfile_read_line(fstring key, fstring value) *p = '\0'; p++; - fstrcpy(key, buffer); - fstrcpy(value, p); + strlcpy(key, buffer, sizeof(key)); + strlcpy(value, p, sizeof(value)); /* Eat whitespace */ |