blob: 12df3f6726247c0b37432098bb60e1e1d8768856 [file] [log] [blame]
https://bugs.gentoo.org/354351
fix sniped from Debian:
* Fix "FTBFS: ncc: illegal label": apply patch by dai that replaces strcpy
by memmove (closes: #591133).
--- copt/copt.c
+++ copt/copt.c
@@ -174,7 +174,7 @@
/* Delete leading white spaces */
for (cp = buf; *cp && isspace(*cp); cp++) ;
if (cp != buf && *cp)
- strcpy(buf, cp);
+ memmove(buf, cp, strlen(cp) + 1);
return(buf);
}