diff options
author | Guy Harris <guy@alum.mit.edu> | 2018-01-21 12:27:08 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2018-01-21 12:27:28 -0800 |
commit | fb2479d733dbe8a991d11909b319341f7db62ab1 (patch) | |
tree | 362ebd4adc084abf7498f370fc832e3babcef685 /missing | |
parent | a15e52bb2722f9c9719cd9909d70c03a10e170c4 (diff) | |
download | tcpdump-fb2479d733dbe8a991d11909b319341f7db62ab1.tar.gz |
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 'missing')
-rw-r--r-- | missing/datalinks.c | 2 | ||||
-rw-r--r-- | missing/dlnames.c | 2 | ||||
-rw-r--r-- | missing/getservent.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/missing/datalinks.c b/missing/datalinks.c index 4a7d6fe9..17f60bec 100644 --- a/missing/datalinks.c +++ b/missing/datalinks.c @@ -32,7 +32,7 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include <config.h> #endif #include <netdissect-stdinc.h> diff --git a/missing/dlnames.c b/missing/dlnames.c index 16bfcf79..61fa18c1 100644 --- a/missing/dlnames.c +++ b/missing/dlnames.c @@ -32,7 +32,7 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include <config.h> #endif #include <netdissect-stdinc.h> diff --git a/missing/getservent.c b/missing/getservent.c index 043b8285..39cee068 100644 --- a/missing/getservent.c +++ b/missing/getservent.c @@ -35,7 +35,7 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include <config.h> #endif #include <netdissect-stdinc.h> |