]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
Fix missing space in error message (Bugzilla 544)
authorPatrick McHardy <kaber@trash.net>
Wed, 14 Feb 2007 13:59:12 +0000 (13:59 +0000)
committerPatrick McHardy <kaber@trash.net>
Wed, 14 Feb 2007 13:59:12 +0000 (13:59 +0000)
ip6tables-restore.c
iptables-restore.c

index a0c359a1e7278f537f1f9fc23bff029d4fa2558f..d5ec80a686d9e4ff469e87afe29c70a492bea0fc 100644 (file)
@@ -67,7 +67,7 @@ ip6tc_handle_t create_handle(const char *tablename, const char* modprobe)
        }
 
        if (!handle) {
-               exit_error(PARAMETER_PROBLEM, "%s: unable to initialize"
+               exit_error(PARAMETER_PROBLEM, "%s: unable to initialize "
                        "table '%s'\n", program_name, tablename);
                exit(1);
        }
index 628997ec84467dc3f363c3e34e93b489b0f4dd78..9abdef2576e3b1ac52bf948f7f0f35baa670889b 100644 (file)
@@ -64,7 +64,7 @@ iptc_handle_t create_handle(const char *tablename, const char* modprobe )
        }
 
        if (!handle) {
-               exit_error(PARAMETER_PROBLEM, "%s: unable to initialize"
+               exit_error(PARAMETER_PROBLEM, "%s: unable to initialize "
                        "table '%s'\n", program_name, tablename);
                exit(1);
        }