1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-03 13:19:04 +00:00

Make strlcpy signature match declaration in libdnet-stripped. See #2150

This commit is contained in:
dmiller
2020-10-13 20:13:37 +00:00
parent b8a6d3773e
commit e61f145425

View File

@@ -295,11 +295,11 @@ int inet_pton(int, const char *, void *);
#endif
#ifndef HAVE_STRLCAT
int strlcat(char *, const char *, int);
size_t strlcat(char *, const char *, int);
#endif
#ifndef HAVE_STRLCPY
int strlcpy(char *, const char *, int);
size_t strlcpy(char *, const char *, int);
#endif
#ifndef HAVE_STRSEP