- Add upstream changes since last release - Rename package to ebtables-legacy - Split systemd service into services sub-package - Rewrite systemd unit helper script for compatibility with ebtables-nft - Drop module unloading on service stop, this causes more harm than good - Remove save format settings, they are not effective anymore - Remove save on restart setting, restart is merely stop && start - Complete integration into alternatives - Remove needless ldconfig calls
26 lines
707 B
Diff
26 lines
707 B
Diff
From 10f6865652777ba7f26825d46e8b419f784463dc Mon Sep 17 00:00:00 2001
|
|
From: Petri Gynther <petri.gynther@gmail.com>
|
|
Date: Sun, 24 Feb 2013 10:56:59 +0100
|
|
Subject: [PATCH] fix compilation warning
|
|
|
|
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
|
---
|
|
communication.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/communication.c b/communication.c
|
|
index 62ed667deac13..ba058c05a68b4 100644
|
|
--- a/communication.c
|
|
+++ b/communication.c
|
|
@@ -282,7 +282,7 @@ static int store_counters_in_file(char *filename, struct ebt_u_replace *repl)
|
|
}
|
|
close_file:
|
|
fclose(file);
|
|
- return 0;
|
|
+ return ret;
|
|
}
|
|
|
|
/* Gets executed after ebt_deliver_table. Delivers the counters to the kernel
|
|
--
|
|
2.21.0
|
|
|