diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-08-18 17:21:38 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-08-18 17:21:38 -0700 |
commit | 69fcdc66ba2b352ea1c79277d3815e55f7c8ab34 (patch) | |
tree | 46237fe8b608451fa18d29b328f4888a8d9ca5d2 /pcap-bt-linux.c | |
parent | 170b9655f263a04adc50a6ddb3302b889b72e2fa (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 'pcap-bt-linux.c')
-rw-r--r-- | pcap-bt-linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pcap-bt-linux.c b/pcap-bt-linux.c index ac5e529b..2486bf23 100644 --- a/pcap-bt-linux.c +++ b/pcap-bt-linux.c @@ -33,7 +33,7 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include <config.h> #endif #include "pcap-int.h" |