Skip to content
Snippets Groups Projects
Commit 14a036d2 authored by Sam Ravnborg's avatar Sam Ravnborg Committed by Sam Ravnborg
Browse files

kbuild: replace use of strlcpy with a dedicated implmentation in unifdef


Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent 01f1c879
No related branches found
No related tags found
No related merge requests found
...@@ -450,7 +450,14 @@ ignoreon(void) ...@@ -450,7 +450,14 @@ ignoreon(void)
static void static void
keywordedit(const char *replacement) keywordedit(const char *replacement)
{ {
strlcpy(keyword, replacement, tline + sizeof(tline) - keyword); size_t size = tline + sizeof(tline) - keyword;
char *dst = keyword;
const char *src = replacement;
if (size != 0) {
while ((--size != 0) && (*src != '\0'))
*dst++ = *src++;
*dst = '\0';
}
print(); print();
} }
static void static void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment