a2ea441692
- Install an improved sample config - Fix permissions of osf-related configs - rule: Fix for potential off-by-one in cmd_add_loc() - netlink_delinearize: Fix suspicious calloc() call - netlink: Avoid memleak in error path of netlink_delinearize_obj() - netlink: Avoid memleak in error path of netlink_delinearize_table() - netlink: Avoid memleak in error path of netlink_delinearize_chain() - netlink: Avoid memleak in error path of netlink_delinearize_set() - json: Drop pointless assignment in exthdr_expr_json() - evaluate: Mark fall through case in str2hooknum() - parser_json: Fix for memleak in tcp option error path - parser_bison: Fix for implicit declaration of isalnum - main: fix nft --help output fallout from 719e4427 - tests: add icmp/6 test where dependency should be left alone - payload: check icmp dependency before removing previous icmp expression Resolves: rhbz#1933117, rhbz#1938823, rhbz#1931790, rhbz#1964987, rhbz#1971600
31 lines
819 B
Diff
31 lines
819 B
Diff
From f09f39704d8bfa15d236b6891aabef270ec43d73 Mon Sep 17 00:00:00 2001
|
|
From: Phil Sutter <phil@nwl.cc>
|
|
Date: Fri, 11 Jun 2021 16:03:32 +0200
|
|
Subject: [PATCH] parser_bison: Fix for implicit declaration of isalnum
|
|
|
|
Have to include ctype.h to make it known.
|
|
|
|
Fixes: e76bb37940181 ("src: allow for variables in the log prefix string")
|
|
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
|
(cherry picked from commit 7c3b2a7acbdc793b822a230ec0c28086c7d0365d)
|
|
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
|
---
|
|
src/parser_bison.y | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/parser_bison.y b/src/parser_bison.y
|
|
index 519e8efe5ab7e..8644f66106496 100644
|
|
--- a/src/parser_bison.y
|
|
+++ b/src/parser_bison.y
|
|
@@ -10,6 +10,7 @@
|
|
|
|
%{
|
|
|
|
+#include <ctype.h>
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <inttypes.h>
|
|
--
|
|
2.31.1
|
|
|