diff options
Diffstat (limited to 'src/libtls')
-rw-r--r-- | src/libtls/tls.c | 2 | ||||
-rw-r--r-- | src/libtls/tls_alert.c | 2 | ||||
-rw-r--r-- | src/libtls/tls_cache.c | 2 | ||||
-rw-r--r-- | src/libtls/tls_crypto.c | 2 | ||||
-rw-r--r-- | src/libtls/tls_eap.c | 2 | ||||
-rw-r--r-- | src/libtls/tls_fragmentation.c | 2 | ||||
-rw-r--r-- | src/libtls/tls_peer.c | 2 | ||||
-rw-r--r-- | src/libtls/tls_protection.c | 2 | ||||
-rw-r--r-- | src/libtls/tls_server.c | 2 | ||||
-rw-r--r-- | src/libtls/tls_socket.c | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/src/libtls/tls.c b/src/libtls/tls.c index 2bcaffbc8..dea08e3eb 100644 --- a/src/libtls/tls.c +++ b/src/libtls/tls.c @@ -15,7 +15,7 @@ #include "tls.h" -#include <debug.h> +#include <utils/debug.h> #include "tls_protection.h" #include "tls_compression.h" diff --git a/src/libtls/tls_alert.c b/src/libtls/tls_alert.c index 6647129ba..7dd219db8 100644 --- a/src/libtls/tls_alert.c +++ b/src/libtls/tls_alert.c @@ -15,7 +15,7 @@ #include "tls_alert.h" -#include <debug.h> +#include <utils/debug.h> #include <collections/linked_list.h> ENUM_BEGIN(tls_alert_desc_names, TLS_CLOSE_NOTIFY, TLS_CLOSE_NOTIFY, diff --git a/src/libtls/tls_cache.c b/src/libtls/tls_cache.c index 1bcc966d5..c13b1e851 100644 --- a/src/libtls/tls_cache.c +++ b/src/libtls/tls_cache.c @@ -15,7 +15,7 @@ #include "tls_cache.h" -#include <debug.h> +#include <utils/debug.h> #include <collections/linked_list.h> #include <collections/hashtable.h> #include <threading/rwlock.h> diff --git a/src/libtls/tls_crypto.c b/src/libtls/tls_crypto.c index f74984879..20a7da023 100644 --- a/src/libtls/tls_crypto.c +++ b/src/libtls/tls_crypto.c @@ -15,7 +15,7 @@ #include "tls_crypto.h" -#include <debug.h> +#include <utils/debug.h> ENUM_BEGIN(tls_cipher_suite_names, TLS_NULL_WITH_NULL_NULL, TLS_DH_anon_WITH_3DES_EDE_CBC_SHA, diff --git a/src/libtls/tls_eap.c b/src/libtls/tls_eap.c index 928aadcb3..68cebb994 100644 --- a/src/libtls/tls_eap.c +++ b/src/libtls/tls_eap.c @@ -18,7 +18,7 @@ #include "tls.h" -#include <debug.h> +#include <utils/debug.h> #include <library.h> /** diff --git a/src/libtls/tls_fragmentation.c b/src/libtls/tls_fragmentation.c index f2fa77cfd..c76376b43 100644 --- a/src/libtls/tls_fragmentation.c +++ b/src/libtls/tls_fragmentation.c @@ -16,7 +16,7 @@ #include "tls_fragmentation.h" #include <bio/bio_reader.h> -#include <debug.h> +#include <utils/debug.h> /** * Maximum size of a TLS handshake message we accept diff --git a/src/libtls/tls_peer.c b/src/libtls/tls_peer.c index 65072d087..e9f967e84 100644 --- a/src/libtls/tls_peer.c +++ b/src/libtls/tls_peer.c @@ -15,7 +15,7 @@ #include "tls_peer.h" -#include <debug.h> +#include <utils/debug.h> #include <credentials/certificates/x509.h> #include <time.h> diff --git a/src/libtls/tls_protection.c b/src/libtls/tls_protection.c index 8263728bb..0d5df18f7 100644 --- a/src/libtls/tls_protection.c +++ b/src/libtls/tls_protection.c @@ -15,7 +15,7 @@ #include "tls_protection.h" -#include <debug.h> +#include <utils/debug.h> typedef struct private_tls_protection_t private_tls_protection_t; diff --git a/src/libtls/tls_server.c b/src/libtls/tls_server.c index a66448d24..ec42b67fc 100644 --- a/src/libtls/tls_server.c +++ b/src/libtls/tls_server.c @@ -17,7 +17,7 @@ #include <time.h> -#include <debug.h> +#include <utils/debug.h> #include <credentials/certificates/x509.h> typedef struct private_tls_server_t private_tls_server_t; diff --git a/src/libtls/tls_socket.c b/src/libtls/tls_socket.c index 3abff596d..75b714e30 100644 --- a/src/libtls/tls_socket.c +++ b/src/libtls/tls_socket.c @@ -18,7 +18,7 @@ #include <unistd.h> #include <errno.h> -#include <debug.h> +#include <utils/debug.h> #include <threading/thread.h> /** |