Browse Source

Checking the value of rule in insert_rule

MissValeska 9 years ago
parent
commit
4dcc515709
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/mark.c

+ 1
- 1
src/mark.c View File

@@ -81,7 +81,7 @@ insert_rule(const char *rule, iptc_handle_t * t, const char *chain,
81 81
 	res = iptc_insert_entry(chain, (struct ipt_entry *) rule, 0, t);
82 82
 	error
83 83
 		("res is: %d rule is: %p chain is: %s pos is: %d t is: %p",
84
-		 res, *rule, chain, pos, t);
84
+		 res, rule, chain, pos, t);
85 85
 	if (!res) {
86 86
 		error("In insert_rule: %s.", iptc_strerror(errno));
87 87
 		err_ret(ERR_NETRUL, -1);

Loading…
Cancel
Save