summaryrefslogtreecommitdiffstats
path: root/src/monitor/monitor.c
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2013-10-02 11:53:33 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-10-22 09:06:04 +0200
commit19b4bb652f5cdc2797b66595eaf8811881aa9873 (patch)
tree7759cba9748de488d59195b14a00a4ca7638bf7a /src/monitor/monitor.c
parent34fde6bc7e05b484fbebef6b3690d73ad5468ec6 (diff)
downloadsssd-19b4bb652f5cdc2797b66595eaf8811881aa9873.tar.gz
sssd-19b4bb652f5cdc2797b66595eaf8811881aa9873.tar.xz
sssd-19b4bb652f5cdc2797b66595eaf8811881aa9873.zip
Include external headers with #include <foo.h>
I find it more readable to include headers from outside the sssd tree with <foo.h>, not "foo.h". The latter should be used for in-tree headers only.
Diffstat (limited to 'src/monitor/monitor.c')
-rw-r--r--src/monitor/monitor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/monitor/monitor.c b/src/monitor/monitor.c
index 3d8ba2628..7d8a150c2 100644
--- a/src/monitor/monitor.c
+++ b/src/monitor/monitor.c
@@ -34,19 +34,19 @@
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
+#include <popt.h>
+#include <tevent.h>
+#include <dbus/dbus.h>
/* Needed for res_init() */
#include <netinet/in.h>
#include <arpa/nameser.h>
#include <resolv.h>
-#include "popt.h"
-#include "tevent.h"
#include "confdb/confdb.h"
#include "confdb/confdb_setup.h"
#include "db/sysdb.h"
#include "monitor/monitor.h"
-#include "dbus/dbus.h"
#include "sbus/sssd_dbus.h"
#include "monitor/monitor_interfaces.h"
#include "responder/common/responder_sbus.h"