summaryrefslogtreecommitdiffstats
path: root/src/confdb
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/confdb
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/confdb')
-rw-r--r--src/confdb/confdb.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/confdb/confdb.h b/src/confdb/confdb.h
index d1587cd4a..38e855656 100644
--- a/src/confdb/confdb.h
+++ b/src/confdb/confdb.h
@@ -23,10 +23,11 @@
#define _CONF_DB_H
#include <stdbool.h>
-#include "talloc.h"
-#include "tevent.h"
-#include "ldb.h"
-#include "ldb_errors.h"
+#include <talloc.h>
+#include <tevent.h>
+#include <ldb.h>
+#include <ldb_errors.h>
+
#include "config.h"
/**