12794df244
snprintf(3) doesn't set errno in the tested cases. - If the same argument reference (for example %1) was specified more than once, the command didn't necessarily fit to the final command buffer. Fix this using a dynamic sbuf buffer. Add a few regression tests for the case. PR: bin/95079 No objections: freebsd-hackers
9 lines
118 B
Makefile
9 lines
118 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= apply
|
|
DPADD= ${LIBSBUF}
|
|
LDADD= -lsbuf
|
|
|
|
.include <bsd.prog.mk>
|