b80a44a236
- config: Fix -Wimplicit-function-declaration - network: Fix -Wstrict-prototypes - build: don't suppress various warnings - build: conntrack-tools requires libnetfilter_conntrack >= 1.0.9 - New version 1.4.7 Resolves: rhbz#2132398
30 lines
829 B
Diff
30 lines
829 B
Diff
From 82b8a4413d2653726748cc28849096dc5abb5916 Mon Sep 17 00:00:00 2001
|
|
From: Sam James <sam@gentoo.org>
|
|
Date: Thu, 24 Nov 2022 07:52:01 +0000
|
|
Subject: [PATCH] network: Fix -Wstrict-prototypes
|
|
|
|
Closes: https://bugzilla.netfilter.org/show_bug.cgi?id=1637
|
|
Signed-off-by: Sam James <sam@gentoo.org>
|
|
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
|
(cherry picked from commit d9ba7353fbb52881d84b9a3bb7b47c14d0da74e6)
|
|
---
|
|
src/network.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/network.c b/src/network.c
|
|
index 13db37c96bb0d..2560d97bab066 100644
|
|
--- a/src/network.c
|
|
+++ b/src/network.c
|
|
@@ -113,7 +113,7 @@ void nethdr_track_update_seq(uint32_t seq)
|
|
STATE_SYNC(last_seq_recv) = seq;
|
|
}
|
|
|
|
-int nethdr_track_is_seq_set()
|
|
+int nethdr_track_is_seq_set(void)
|
|
{
|
|
return local_seq_set;
|
|
}
|
|
--
|
|
2.38.0
|
|
|