diff options
author | Sven-Thorsten Dietrich <sven@vyatta.com> | 2013-02-14 16:07:15 -0800 |
---|---|---|
committer | Sven-Thorsten Dietrich <sven@vyatta.com> | 2013-02-14 16:07:15 -0800 |
commit | 92f63cf9d3f054b7b1b98d7cb9e8c7b0446a2e53 (patch) | |
tree | 4585ca0b2b216f628fcc47b3b98f23b941ac3c4d | |
parent | f28cd7402b6fbc7ef78fc05386ff3da969f5bec0 (diff) | |
download | conntrack-tools-92f63cf9d3f054b7b1b98d7cb9e8c7b0446a2e53.tar.gz conntrack-tools-92f63cf9d3f054b7b1b98d7cb9e8c7b0446a2e53.zip |
Fix build error:
parse.c: In function ‘msg2ct’:
parse.c:258: error: ‘NULL’ undeclared (first use in this function)
parse.c:258: error: (Each undeclared identifier is reported only once
parse.c:258: error: for each function it appears in.)
needed #include <stdddef.h>
-rw-r--r-- | src/parse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parse.c b/src/parse.c index c3b7f7f..39640f7 100644 --- a/src/parse.c +++ b/src/parse.c @@ -17,6 +17,7 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include <stddef.h> #include "network.h" #include <libnetfilter_conntrack/libnetfilter_conntrack.h> |