FreeCalypso > hg > freecalypso-tools
view rvinterf/lowlevel/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 | fab04df64690 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= rvtdump rvinterf tfc139 LIBS= ../../libserial/libserial.a ../libprint/libprint.a LIBPWON=../../libpwon/libpwon.a INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin RVTDUMP_OBJS= format.o format_fc.o output.o packetrx.o rvtdump.o RVINTERF_OBJS= clientcmd.o format.o format_fc.o localsock.o logsent.o \ output.o packetrx.o packettx.o pktfwd.o rviflcd.o \ rvifmain.o rviftmode.o tchhide.o TFC139_OBJS= format.o output.o packetrx.o packettx.o tfc139.o all: ${PROGS} rvtdump: ${RVTDUMP_OBJS} ${LIBS} ${CC} ${CFLAGS} -o $@ ${RVTDUMP_OBJS} ${LIBS} rvinterf: ${RVINTERF_OBJS} ${LIBS} ${LIBPWON} ${CC} ${CFLAGS} -o $@ ${RVINTERF_OBJS} ${LIBS} ${LIBPWON} tfc139: ${TFC139_OBJS} ${LIBS} ${CC} ${CFLAGS} -o $@ ${TFC139_OBJS} ${LIBS} install: ${PROGS} mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f *.o *.out *errs ${PROGS}