mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-29 10:01:25 +00:00
xtensa: strlcpy is smart enough
strlcpy already accounts for the trailing zero in its length computation, so there is no need to substract one to the buffer size. Signed-off-by: Jean Delvare <khali@linux-fr.org> Cc: Chris Zankel <chris@zankel.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
ee17b36fd0
commit
0ddb16cfb0
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ static int tuntap_open(struct iss_net_private *lp)
|
||||||
|
|
||||||
memset(&ifr, 0, sizeof ifr);
|
memset(&ifr, 0, sizeof ifr);
|
||||||
ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
|
ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
|
||||||
strlcpy(ifr.ifr_name, dev_name, sizeof ifr.ifr_name - 1);
|
strlcpy(ifr.ifr_name, dev_name, sizeof ifr.ifr_name);
|
||||||
|
|
||||||
if ((err = simc_ioctl(fd, TUNSETIFF, (void*) &ifr)) < 0) {
|
if ((err = simc_ioctl(fd, TUNSETIFF, (void*) &ifr)) < 0) {
|
||||||
printk("Failed to set interface, returned %d "
|
printk("Failed to set interface, returned %d "
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue