diff options
author | Pavel Reichl <pavel.reichl@redhat.com> | 2013-10-22 15:21:33 +0100 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-11-04 10:52:15 +0100 |
commit | f7257ab0bcea6c41fab5a4677787f3075ecdcb64 (patch) | |
tree | 504f3f1ab6d8911c8a7614b719ddb841acb1f263 /src/tests/cmocka | |
parent | 64cb81a65e584858dd631bc5160959d350c091e3 (diff) | |
download | sssd-f7257ab0bcea6c41fab5a4677787f3075ecdcb64.tar.gz sssd-f7257ab0bcea6c41fab5a4677787f3075ecdcb64.tar.xz sssd-f7257ab0bcea6c41fab5a4677787f3075ecdcb64.zip |
Include ext headers with #include <foo.h> - cont
Changing style of including header files from outside of sssd tree - from "header.h" to <header.h>
Diffstat (limited to 'src/tests/cmocka')
-rw-r--r-- | src/tests/cmocka/test_find_uid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/cmocka/test_find_uid.c b/src/tests/cmocka/test_find_uid.c index d4837be0d..dcc367962 100644 --- a/src/tests/cmocka/test_find_uid.c +++ b/src/tests/cmocka/test_find_uid.c @@ -29,10 +29,10 @@ #include <unistd.h> #include <sys/types.h> #include <cmocka.h> +#include <dhash.h> #include "util/find_uid.h" #include "tests/common.h" -#include "dhash.h" void test_check_if_uid_is_active_success(void **state) { |