aboutsummaryrefslogtreecommitdiff
path: root/bpf_image.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-08-18 17:21:38 -0700
committerGuy Harris <guy@alum.mit.edu>2017-08-18 17:21:38 -0700
commit69fcdc66ba2b352ea1c79277d3815e55f7c8ab34 (patch)
tree46237fe8b608451fa18d29b328f4888a8d9ca5d2 /bpf_image.c
parent170b9655f263a04adc50a6ddb3302b889b72e2fa (diff)
Always include <config.h> rather than "config.h".
This can prevent bizarre failures if, for example, you've done a configuration in the top-level source directory, leaving behind one config.h file, and then do an out-of-tree build in another directory, with different configuration options. This way, we always pick up the same config.h, in the build directory.
Diffstat (limited to 'bpf_image.c')
-rw-r--r--bpf_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpf_image.c b/bpf_image.c
index 01ec536d..ec659dc1 100644
--- a/bpf_image.c
+++ b/bpf_image.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-#include "config.h"
+#include <config.h>
#endif
#ifdef _WIN32