diff options
-rw-r--r-- | src/libnftables.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libnftables.c b/src/libnftables.c index c8293f77..9f6a1bc3 100644 --- a/src/libnftables.c +++ b/src/libnftables.c @@ -176,6 +176,9 @@ static bool nft_ctx_find_include_path(struct nft_ctx *ctx, const char *path) return true; } + if (!strcmp(path, DEFAULT_INCLUDE_PATH)) + return true; + return false; } |