From e5cb42249f7fd5b730667150c9c19f10d2f215fd Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Fri, 25 Jul 2008 13:05:12 +0200 Subject: cleanup: split internal.h into several internal header files This patch cleanups the internal headers by splitting them into several logical pieces. Signed-off-by: Pablo Neira Ayuso --- src/expect/api.c | 2 +- src/expect/build.c | 2 +- src/expect/callback.c | 2 +- src/expect/getter.c | 2 +- src/expect/parse.c | 2 +- src/expect/setter.c | 2 +- src/expect/snprintf.c | 2 +- src/expect/snprintf_default.c | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src/expect') diff --git a/src/expect/api.c b/src/expect/api.c index ab804ca..bbf6e30 100644 --- a/src/expect/api.c +++ b/src/expect/api.c @@ -10,7 +10,7 @@ #include #include -#include "internal.h" +#include "internal/internal.h" /** * nfexp_new - allocate a new expectation diff --git a/src/expect/build.c b/src/expect/build.c index dfc5edf..2f9cb84 100644 --- a/src/expect/build.c +++ b/src/expect/build.c @@ -5,7 +5,7 @@ * of the GNU General Public License, incorporated herein by reference. */ -#include "internal.h" +#include "internal/internal.h" static void __build_timeout(struct nfnlhdr *req, size_t size, diff --git a/src/expect/callback.c b/src/expect/callback.c index df4ffe7..6a45b0e 100644 --- a/src/expect/callback.c +++ b/src/expect/callback.c @@ -5,7 +5,7 @@ * of the GNU General Public License, incorporated herein by reference. */ -#include "internal.h" +#include "internal/internal.h" int __expect_callback(struct nlmsghdr *nlh, struct nfattr *nfa[], void *data) { diff --git a/src/expect/getter.c b/src/expect/getter.c index 2cbebe6..2a622af 100644 --- a/src/expect/getter.c +++ b/src/expect/getter.c @@ -5,7 +5,7 @@ * of the GNU General Public License, incorporated herein by reference. */ -#include "internal.h" +#include "internal/internal.h" static const void *get_exp_attr_master(const struct nf_expect *exp) { diff --git a/src/expect/parse.c b/src/expect/parse.c index 5fe0bce..e14890d 100644 --- a/src/expect/parse.c +++ b/src/expect/parse.c @@ -5,7 +5,7 @@ * of the GNU General Public License, incorporated herein by reference. */ -#include "internal.h" +#include "internal/internal.h" int __parse_expect_message_type(const struct nlmsghdr *nlh) { diff --git a/src/expect/setter.c b/src/expect/setter.c index ae80ca8..c962bb5 100644 --- a/src/expect/setter.c +++ b/src/expect/setter.c @@ -5,7 +5,7 @@ * of the GNU General Public License, incorporated herein by reference. */ -#include "internal.h" +#include "internal/internal.h" static void set_exp_attr_master(struct nf_expect *exp, const void *value) { diff --git a/src/expect/snprintf.c b/src/expect/snprintf.c index 64a6589..9eccfa4 100644 --- a/src/expect/snprintf.c +++ b/src/expect/snprintf.c @@ -5,7 +5,7 @@ * of the GNU General Public License, incorporated herein by reference. */ -#include "internal.h" +#include "internal/internal.h" int __snprintf_expect(char *buf, unsigned int len, diff --git a/src/expect/snprintf_default.c b/src/expect/snprintf_default.c index 1014ef0..fec1586 100644 --- a/src/expect/snprintf_default.c +++ b/src/expect/snprintf_default.c @@ -5,7 +5,7 @@ * of the GNU General Public License, incorporated herein by reference. */ -#include "internal.h" +#include "internal/internal.h" static int __snprintf_expect_proto(char *buf, unsigned int len, -- cgit v1.2.3