From 5e7e8b46fc84d8010e11d3c43d8c2b742028375f Mon Sep 17 00:00:00 2001 From: Vadim Kochan Date: Sun, 22 Nov 2015 21:09:38 +0200 Subject: trafgen: Invoke C preprocessor from cpp.c module Use cpp_exec func to invoke C preprocesor. Signed-off-by: Vadim Kochan Signed-off-by: Tobias Klauser --- trafgen_parser.y | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'trafgen_parser.y') diff --git a/trafgen_parser.y b/trafgen_parser.y index a05b7e8..afcb3e2 100644 --- a/trafgen_parser.y +++ b/trafgen_parser.y @@ -25,6 +25,7 @@ #include "die.h" #include "str.h" #include "csum.h" +#include "cpp.h" #define YYERROR_VERBOSE 0 #define YYDEBUG 0 @@ -598,22 +599,11 @@ void compile_packets(char *file, bool verbose, unsigned int cpu, bool invoke_cpp our_cpu = cpu; if (invoke_cpp) { - char cmd[256], *dir, *base, *a, *b; - - dir = dirname((a = xstrdup(file))); - base = basename((b = xstrdup(file))); - - slprintf(tmp_file, sizeof(tmp_file), "%s/.tmp-%u-%s", dir, rand(), base); - slprintf(cmd, sizeof(cmd), "cpp -I" ETCDIRE_STRING " %s > %s", - file, tmp_file); - if (system(cmd) != 0) { + if (cpp_exec(file, tmp_file, sizeof(tmp_file))) { fprintf(stderr, "Failed to invoke C preprocessor!\n"); goto err; } - file = tmp_file; - xfree(a); - xfree(b); } if (!strncmp("-", file, strlen("-"))) -- cgit v1.2.3-54-g00ecf