hurd: Fix strcpy calls
authorSamuel Thibault <samuel.thibault@ens-lyon.org>
Sun, 22 Nov 2020 23:15:36 +0000 (23:15 +0000)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Sun, 22 Nov 2020 23:15:36 +0000 (23:15 +0000)
commitee11682d4f530cbbd29b9e3aa69e8d7f8c269d1c
tree4cfa4deb01edc57c4f6ba1f6fe21297615ee6dfa
parentae959c26db5d11bcda0335ea72b696a28e1b6e3a
hurd: Fix strcpy calls

strcpy cannot be used with overlapping buffer, we have to use memmove
instead. strcpy also cannot be safely used when the destination buffer
is smaller that the source, we need to use strncpy to truncate the
source if needed.
hurd/lookup-retry.c