From 9d1378e110b1e34f8a64779e5beee9e6a7bf631b Mon Sep 17 00:00:00 2001 From: "David A. Wheeler" Date: Thu, 25 Jan 2018 23:29:37 -0500 Subject: [PATCH] Fix typo in gsignal|ssignal rule Fix a typo in the gsignal|ssignal rule. This fixes SF bug #8. My thanks to philipp for reporting this! Signed-off-by: David A. Wheeler --- flawfinder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flawfinder b/flawfinder index 7136cf2..4f17df1 100755 --- a/flawfinder +++ b/flawfinder @@ -1286,7 +1286,7 @@ c_ruleset = { "gsignal|ssignal": (normal, 2, - "These functions are considered obsolete on most systems, and very non-poertable (Linux-based systems handle them radically different, basically if gsignal/ssignal were the same as raise/signal respectively, while System V considers them a separate set and obsolete) (CWE-676)", + "These functions are considered obsolete on most systems, and very non-portable (Linux-based systems handle them radically different, basically if gsignal/ssignal were the same as raise/signal respectively, while System V considers them a separate set and obsolete) (CWE-676)", "Switch to raise/signal, or some other signalling approach", "obsolete", "", {}),