summaryrefslogtreecommitdiffstats
path: root/src/statement.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/statement.c')
-rw-r--r--src/statement.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/statement.c b/src/statement.c
index a5ef7d7d..6537bbbd 100644
--- a/src/statement.c
+++ b/src/statement.c
@@ -178,7 +178,7 @@ static const char *objref_type[NFT_OBJECT_MAX + 1] = {
[NFT_OBJECT_LIMIT] = "limit",
};
-static const char *objref_type_name(uint32_t type)
+const char *objref_type_name(uint32_t type)
{
if (type > NFT_OBJECT_MAX)
return "unknown";
@@ -225,7 +225,7 @@ static const char *syslog_level[LOG_DEBUG + 1] = {
[LOG_DEBUG] = "debug",
};
-static const char *log_level(uint32_t level)
+const char *log_level(uint32_t level)
{
if (level > LOG_DEBUG)
return "unknown";