From 07bde8c0ff9b12e0236374b9f7490909ddf8d213 Mon Sep 17 00:00:00 2001 From: Daniel Mack Date: Tue, 13 Jan 2015 15:50:15 +0100 Subject: [PATCH] fw-util: fix errno typo for !HAVE_LIBIPTC --- src/shared/fw-util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/fw-util.h b/src/shared/fw-util.h index 58b4c2024d..698cc43daa 100644 --- a/src/shared/fw-util.h +++ b/src/shared/fw-util.h @@ -76,7 +76,7 @@ static inline int fw_add_local_dnat( const union in_addr_union *remote, uint16_t remote_port, const union in_addr_union *previous_remote) { - return -ENOSTUP; + return -ENOTSUP; } #endif