summaryrefslogtreecommitdiffstats
path: root/communication.c
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2002-08-24 21:01:21 +0000
committerBart De Schuymer <bdschuym@pandora.be>2002-08-24 21:01:21 +0000
commit62a7fdb81507a7c364c49db1361e6c7728764b17 (patch)
tree33f9a1c0184a916f521ad8f9a1a937299b3c7fac /communication.c
parenta53ce8effe08e708b440f5249803eb4aa29e2f96 (diff)
*** empty log message ***
Diffstat (limited to 'communication.c')
-rw-r--r--communication.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/communication.c b/communication.c
index 184a4c1..887ee08 100644
--- a/communication.c
+++ b/communication.c
@@ -656,9 +656,11 @@ int get_table(struct ebt_u_replace *u_repl)
struct ebt_u_entry **u_e;
strcpy(repl.name, u_repl->name);
- if (u_repl->filename != NULL)
+ if (u_repl->filename != NULL) {
retrieve_from_file(u_repl->filename, &repl, u_repl->command);
- else if (retrieve_from_kernel(&repl, u_repl->command) == -1)
+ // -L with a wrong table name should be dealt with silently
+ strcpy(u_repl->name, repl.name);
+ } else if (retrieve_from_kernel(&repl, u_repl->command) == -1)
return -1;
// translate the struct ebt_replace to a struct ebt_u_replace