From 185db9db96901bf04d6c6194ab4e2bafe048ed8a Mon Sep 17 00:00:00 2001 From: dmiller Date: Wed, 6 Sep 2017 18:01:45 +0000 Subject: [PATCH] Correct a function name in a comment --- osscan.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osscan.cc b/osscan.cc index cc3411947..bcff74cf5 100644 --- a/osscan.cc +++ b/osscan.cc @@ -823,7 +823,7 @@ static std::vector str2AVal(const char *str) { /* Compare two AVal chains literally, without evaluating the value of either one as an expression. This is used by mergeFPs. Unlike with AVal_match, it is - always the case that AVal_match_literal(a, b) == AVal_match_literal(b, a). */ + always the case that test_match_literal(a, b) == test_match_literal(b, a). */ static bool test_match_literal(const FingerTest *a, const FingerTest *b) { std::vector::const_iterator ia, ib;