@@ -, +, @@ --- scripts/gen_symbol_version_map.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/scripts/gen_symbol_version_map.awk +++ a/scripts/gen_symbol_version_map.awk @@ -14,7 +14,7 @@ BEGIN { # Only check FUNCtion symbols which are not LOCAL, or # do not have DEFAULT visibility - if ($4 != "FUNC" || $5 == "LOCAL" || $6 != "DEFAULT") + if ($4 != "FUNC" || $5 == "LOCAL" || $6 == "DEFAULT") next; for (x in SYMBOLS) { --