summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2003-12-04 22:40:43 +0000
committerLennart Poettering <lennart@poettering.net>2003-12-04 22:40:43 +0000
commit905060b43a294dd73cbcf19eb86b66240d6d0140 (patch)
tree6bd591c547cc4a78ac15962a16d09391679bf9e9 /libs
parentf19907aec71491fa517cf01f36600277e7a1ad3c (diff)
May further patches from dbindner
git-svn-id: file:///home/lennart/svn/public/seppl/trunk@19 91a2fd9b-5dcb-0310-a70a-d71e310228e6
Diffstat (limited to 'libs')
-rw-r--r--libs/libipt_CRYPT.c8
-rw-r--r--libs/libipt_DECRYPT.c8
2 files changed, 12 insertions, 4 deletions
diff --git a/libs/libipt_CRYPT.c b/libs/libipt_CRYPT.c
index 7e171f3..c7f083f 100644
--- a/libs/libipt_CRYPT.c
+++ b/libs/libipt_CRYPT.c
@@ -1,4 +1,4 @@
-/* $Id: newmail.c 31 2003-10-22 22:59:07Z lennart $ */
+/* $Id$ */
/***
This file is part of seppl
@@ -19,6 +19,10 @@
USA
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
@@ -97,7 +101,7 @@ static void save(const struct ipt_ip *ip, const struct ipt_entry_target *target)
static struct iptables_target crypt = {
NULL,
"CRYPT",
- "1.2.8",
+ IPTABLES_VERSION,
IPT_ALIGN(sizeof(struct ipt_crypt_info)),
IPT_ALIGN(sizeof(struct ipt_crypt_info)),
&help,
diff --git a/libs/libipt_DECRYPT.c b/libs/libipt_DECRYPT.c
index a9a5fc9..29e2160 100644
--- a/libs/libipt_DECRYPT.c
+++ b/libs/libipt_DECRYPT.c
@@ -1,4 +1,4 @@
-/* $Id: newmail.c 31 2003-10-22 22:59:07Z lennart $ */
+/* $Id$ */
/***
This file is part of seppl
@@ -19,6 +19,10 @@
USA
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
@@ -58,7 +62,7 @@ static void save(const struct ipt_ip *ip, const struct ipt_entry_target *target)
static struct iptables_target decrypt = {
NULL,
"DECRYPT",
- "1.2.8",
+ IPTABLES_VERSION,
IPT_ALIGN(sizeof(struct ipt_decrypt_info)),
IPT_ALIGN(sizeof(struct ipt_decrypt_info)),
&help,