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-dbus.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-dbus.c')
-rw-r--r-- | pcap-dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pcap-dbus.c b/pcap-dbus.c index 2fedaeff..b1fb548f 100644 --- a/pcap-dbus.c +++ b/pcap-dbus.c @@ -29,7 +29,7 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include <config.h> #endif #include <string.h> |