FreeCalypso > hg > freecalypso-tools
view ffstools/tiffs-wrappers/Makefile @ 1011:6d9b10633f10
etmsync Pirelli IMEI retrieval: fix poor use of printf()
Bug reported by Vadim Yanitskiy <fixeria@osmocom.org>: the construct
where a static-allocated string was passed to printf() without any
format arguments causes newer compilers to report a security problem.
Given that formatted output is not needed here, just fixed string
output, change printf() to fputs(), and direct the error message
to stderr while at it.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 23 May 2024 17:29:57 +0000 |
parents | 8e7f6cca385b |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= mokoffs pirffs tiffs-8m INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin MOKOFFS_OBJS= installpath.o mokoffs.o PIRFFS_OBJS= installpath.o pirffs.o TIFFS8M_OBJS= installpath.o tiffs-8m.o all: ${PROGS} mokoffs: ${MOKOFFS_OBJS} ${CC} ${CFLAGS} -o $@ ${MOKOFFS_OBJS} pirffs: ${PIRFFS_OBJS} ${CC} ${CFLAGS} -o $@ ${PIRFFS_OBJS} tiffs-8m: ${TIFFS8M_OBJS} ${CC} ${CFLAGS} -o $@ ${TIFFS8M_OBJS} install: ${PROGS} mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f *.o *.out *errs ${PROGS}