summaryrefslogtreecommitdiffstats
path: root/examples/nft-rule-xml-add.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nft-rule-xml-add.c')
-rw-r--r--examples/nft-rule-xml-add.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/examples/nft-rule-xml-add.c b/examples/nft-rule-xml-add.c
index 7bd44ff..4de7a69 100644
--- a/examples/nft-rule-xml-add.c
+++ b/examples/nft-rule-xml-add.c
@@ -1,10 +1,13 @@
/*
- * 2013 by Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
+ * (C) 2013 by Pablo Neira Ayuso <pablo@netfilter.org>
+ * (C) 2013 by Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
+ *
+ * This code has been sponsored by Sophos Astaro <http://www.sophos.com>
*/
#include <stdlib.h>
@@ -52,6 +55,7 @@ int main(int argc, char *argv[])
close(fd);
exit(EXIT_FAILURE);
}
+ close(fd);
r = nft_rule_alloc();
if (r == NULL) {
@@ -72,7 +76,8 @@ int main(int argc, char *argv[])
seq = time(NULL);
nlh = nft_rule_nlmsg_build_hdr(buf, NFT_MSG_NEWRULE, family,
- NLM_F_APPEND|NLM_F_ACK, seq);
+ NLM_F_CREATE|NLM_F_APPEND|NLM_F_ACK,
+ seq);
nft_rule_nlmsg_build_payload(nlh, r);
nft_rule_free(r);