summaryrefslogtreecommitdiffstats
path: root/src/responder/pac
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/responder/pac
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/responder/pac')
-rw-r--r--src/responder/pac/pacsrv.c4
-rw-r--r--src/responder/pac/pacsrv.h13
2 files changed, 10 insertions, 7 deletions
diff --git a/src/responder/pac/pacsrv.c b/src/responder/pac/pacsrv.c
index a06d768bb..7a736adae 100644
--- a/src/responder/pac/pacsrv.c
+++ b/src/responder/pac/pacsrv.c
@@ -29,13 +29,13 @@
#include <string.h>
#include <sys/time.h>
#include <errno.h>
+#include <popt.h>
+#include <dbus/dbus.h>
-#include "popt.h"
#include "util/util.h"
#include "responder/pac/pacsrv.h"
#include "db/sysdb.h"
#include "confdb/confdb.h"
-#include "dbus/dbus.h"
#include "sbus/sssd_dbus.h"
#include "responder/common/responder_packet.h"
#include "responder/common/responder.h"
diff --git a/src/responder/pac/pacsrv.h b/src/responder/pac/pacsrv.h
index f90b40c67..bda95eb0f 100644
--- a/src/responder/pac/pacsrv.h
+++ b/src/responder/pac/pacsrv.h
@@ -21,6 +21,9 @@
#ifndef __PACSRV_H__
#define __PACSRV_H__
+
+#include "config.h"
+
#include <stdbool.h>
#include <util/data_blob.h>
#include <ndr.h>
@@ -29,11 +32,11 @@
#include <stdint.h>
#include <sys/un.h>
-#include "config.h"
-#include "talloc.h"
-#include "tevent.h"
-#include "ldb.h"
-#include "dbus/dbus.h"
+#include <talloc.h>
+#include <tevent.h>
+#include <ldb.h>
+#include <dbus/dbus.h>
+
#include "sbus/sssd_dbus.h"
#include "responder/common/responder_packet.h"
#include "responder/common/responder.h"