diff options
author | Dan Winship <danw@gnome.org> | 2014-11-13 10:07:02 -0500 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2014-11-13 17:18:42 -0500 |
commit | 3bfb163a74fb98698b03d8a605b0164869a2ed4a (patch) | |
tree | 9aff34e20cafdfdce5fed6dc98e2e1a1b07e7a3c /libnm-util/nm-setting-infiniband.c | |
parent | 125f7c4d40b7048209d031b3322e46e081d7c328 (diff) | |
download | NetworkManager-3bfb163a74fb98698b03d8a605b0164869a2ed4a.tar.gz |
all: consistently include config.h
config.h should be included from every .c file, and it should be
included before any other include. Fix that.
(As a side effect of how I did this, this also changes us to
consistently use "config.h" rather than <config.h>. To the extent that
it matters [which is not much], quotes are more correct anyway, since
we're talking about a file in our own build tree, not a system
include.)
Diffstat (limited to 'libnm-util/nm-setting-infiniband.c')
-rw-r--r-- | libnm-util/nm-setting-infiniband.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libnm-util/nm-setting-infiniband.c b/libnm-util/nm-setting-infiniband.c index d51973adfa..71942c60ea 100644 --- a/libnm-util/nm-setting-infiniband.c +++ b/libnm-util/nm-setting-infiniband.c @@ -19,6 +19,8 @@ * Copyright 2011 - 2013 Red Hat, Inc. */ +#include "config.h" + #include <stdlib.h> #include <dbus/dbus-glib.h> #include <linux/if_infiniband.h> |