diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2013-10-02 11:53:33 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-10-22 09:06:04 +0200 |
commit | 19b4bb652f5cdc2797b66595eaf8811881aa9873 (patch) | |
tree | 7759cba9748de488d59195b14a00a4ca7638bf7a /src/util/util.c | |
parent | 34fde6bc7e05b484fbebef6b3690d73ad5468ec6 (diff) | |
download | sssd-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/util/util.c')
-rw-r--r-- | src/util/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/util.c b/src/util/util.c index 9ab154db3..5931549f4 100644 --- a/src/util/util.c +++ b/src/util/util.c @@ -23,11 +23,11 @@ #include <poll.h> #include <sys/socket.h> #include <arpa/inet.h> +#include <talloc.h> +#include <dhash.h> -#include "talloc.h" #include "util/util.h" #include "util/sss_utf8.h" -#include "dhash.h" int split_on_separator(TALLOC_CTX *mem_ctx, const char *str, const char sep, bool trim, bool skip_empty, |