diff --git a/src/dt/common.h b/src/dt/common.h index f6bad44..992e28f 100644 --- a/src/dt/common.h +++ b/src/dt/common.h @@ -168,7 +168,7 @@ #define basprintf(fmt, arg...) barebox_asprintf(fmt, ##arg) /** - * strlcpy - Copy a %NUL terminated string into a sized buffer + * DT_strlcpy - Copy a %NUL terminated string into a sized buffer * @dest: Where to copy the string to * @src: Where to copy the string from * @size: size of destination buffer @@ -178,7 +178,7 @@ * of course, the buffer size is zero). It does not pad * out the result like strncpy() does. */ -static inline size_t strlcpy(char *dest, const char *src, size_t size) +static inline size_t DT_strlcpy(char *dest, const char *src, size_t size) { size_t ret = strlen(src); diff --git a/src/libdt.c b/src/libdt.c index 4db5160..3adeed2 100644 --- a/src/libdt.c +++ b/src/libdt.c @@ -1503,7 +1503,7 @@ if (!compatible || strlen(compatible) > cplen) return -ENODEV; p = strchr(compatible, ','); - strlcpy(modalias, p ? p + 1 : compatible, len); + DT_strlcpy(modalias, p ? p + 1 : compatible, len); return 0; }