aboutgitcodebugslistschat
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2022-09-28 14:33:25 +1000
committerStefano Brivio <sbrivio@redhat.com>2022-09-29 12:22:17 +0200
commit6aca100469838a030542283013589d99a002d10d (patch)
tree8741206d9e76baf9503a8b5841b18ac1c4d19309 /Makefile
parentfb15259205c006149fc0bedbf4ef135e53c4268e (diff)
downloadpasst-6aca100469838a030542283013589d99a002d10d.tar
passt-6aca100469838a030542283013589d99a002d10d.tar.gz
passt-6aca100469838a030542283013589d99a002d10d.tar.bz2
passt-6aca100469838a030542283013589d99a002d10d.tar.lz
passt-6aca100469838a030542283013589d99a002d10d.tar.xz
passt-6aca100469838a030542283013589d99a002d10d.tar.zst
passt-6aca100469838a030542283013589d99a002d10d.zip
cppcheck: Use inline suppressions for qrap.c
qrap.c uses several old-fashioned functions that cppcheck complains about. Since it's headed for obselesence anyway, just suppress these rather than attempting to modernize the code. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d5bfce4..d465d87 100644
--- a/Makefile
+++ b/Makefile
@@ -287,7 +287,7 @@ cppcheck: $(SRCS) $(HEADERS)
--suppress=va_list_usedBeforeStarted:util.c \
--suppress=unusedFunction \
--suppress=knownConditionTrueFalse:conf.c \
- --suppress=strtokCalled:conf.c --suppress=strtokCalled:qrap.c \
+ --suppress=strtokCalled:conf.c \
--suppress=localtimeCalled:pcap.c \
--suppress=unusedStructMember:pcap.c \
--suppress=unusedStructMember:dhcp.c \
@@ -295,7 +295,6 @@ cppcheck: $(SRCS) $(HEADERS)
--suppress=unmatchedSuppression:conf.c \
--suppress=unmatchedSuppression:dhcp.c \
--suppress=unmatchedSuppression:pcap.c \
- --suppress=unmatchedSuppression:qrap.c \
--suppress=unmatchedSuppression:tcp.c \
--suppress=unmatchedSuppression:udp.c \
--suppress=unmatchedSuppression:util.c \