diff options
author | Tobias Brunner <tobias@strongswan.org> | 2010-03-01 16:03:18 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2010-03-02 10:38:58 +0100 |
commit | fac3bfa5cd96d9789cea2836cb4903580f8ce426 (patch) | |
tree | b37947586ac3a749ef17790116ede0f8c09ff2ed /src/libstrongswan/integrity_checker.c | |
parent | 6ec60bb92bf2c6e4e564d5b55b25436c74485c56 (diff) | |
download | strongswan-fac3bfa5cd96d9789cea2836cb4903580f8ce426.tar.bz2 strongswan-fac3bfa5cd96d9789cea2836cb4903580f8ce426.tar.xz |
Fixing some includes by replacing <> with "".
I changed only the includes needed to fix the build on Android, which has an utils.h system header file, but we should probably change all the local includes in libstrongswan to "" and relative paths.
Diffstat (limited to 'src/libstrongswan/integrity_checker.c')
-rw-r--r-- | src/libstrongswan/integrity_checker.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstrongswan/integrity_checker.c b/src/libstrongswan/integrity_checker.c index 51da4e725..680586c1d 100644 --- a/src/libstrongswan/integrity_checker.c +++ b/src/libstrongswan/integrity_checker.c @@ -26,8 +26,8 @@ #include <sys/stat.h> #include <sys/types.h> -#include <debug.h> -#include <library.h> +#include "debug.h" +#include "library.h" typedef struct private_integrity_checker_t private_integrity_checker_t; |