Clean up test_ifaddrs a bit.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 7 Mar 2017 17:05:57 +0000 (12:05 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 7 Mar 2017 17:06:07 +0000 (12:06 -0500)
We customarily #include <netinet/in.h> before <arpa/inet.h>; according
to our git history (cf commit 527f8babc) there used to be platform(s)
where <arpa/inet.h> didn't compile otherwise.  That's probably not
really an issue anymore, but since test_ifaddrs.c is the one and only
place in our code that's not following that rule, bring it into line.
Also remove #include <sys/socket.h>, as that's duplicative given that
libpq/ifaddr.h does so (via pqcomm.h).

In passing, add a .gitignore file so nobody accidentally commits the
test_ifaddrs executable, as I nearly did.

I see no particular need to back-patch this, as it's just neatnik-ism
considering we don't build test_ifaddrs by default, or even document
it anywhere.

src/tools/ifaddrs/.gitignore [new file with mode: 0644]
src/tools/ifaddrs/test_ifaddrs.c

diff --git a/src/tools/ifaddrs/.gitignore b/src/tools/ifaddrs/.gitignore
new file mode 100644 (file)
index 0000000..2e90032
--- /dev/null
@@ -0,0 +1 @@
+/test_ifaddrs
index 80b9bb026604d06d3564e827dd935837d7ee4558..100359ade1242b169afb98dae363fb8e507dcc2b 100644 (file)
@@ -8,9 +8,8 @@
 
 #include "postgres.h"
 
-#include <arpa/inet.h>
 #include <netinet/in.h>
-#include <sys/socket.h>
+#include <arpa/inet.h>
 
 #include "libpq/ifaddr.h"