summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2005-01-19 21:23:02 +0000
committerBart De Schuymer <bdschuym@pandora.be>2005-01-19 21:23:02 +0000
commit784f809c5c2a01a4d48a85f61542c5f76686a168 (patch)
treedc0a6137649527fa831158fb7b0b2863c4bd1662
parent98984a8c623b592ddfb3b30ac92615422849eab3 (diff)
missing =
-rw-r--r--userspace/ebtables2/communication.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/userspace/ebtables2/communication.c b/userspace/ebtables2/communication.c
index 81fca22..1035ae9 100644
--- a/userspace/ebtables2/communication.c
+++ b/userspace/ebtables2/communication.c
@@ -656,7 +656,7 @@ static int retrieve_from_file(char *filename, struct ebt_replace *repl,
fseek(file, 0, SEEK_END);
if (size != ftell(file)) {
ebt_print_error("File %s has wrong size", filename);
- ret -1;
+ ret = -1;
goto close_file;
}
entries = (char *)malloc(repl->entries_size);