summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Swiften/TLS/PlatformTLSFactories.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/Swiften/TLS/PlatformTLSFactories.cpp b/Swiften/TLS/PlatformTLSFactories.cpp
index 0ad8fc6..2492840 100644
--- a/Swiften/TLS/PlatformTLSFactories.cpp
+++ b/Swiften/TLS/PlatformTLSFactories.cpp
@@ -1,22 +1,22 @@
/*
- * Copyright (c) 2010 Isode Limited.
+ * Copyright (c) 2010-2015 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
-#include <Swiften/Base/Platform.h>
#include <Swiften/TLS/PlatformTLSFactories.h>
-#include <cstring>
-#include <cassert>
+#include <Swiften/Base/Platform.h>
+#include <Swiften/TLS/CertificateFactory.h>
+#include <Swiften/TLS/TLSContextFactory.h>
#ifdef HAVE_OPENSSL
- #include "Swiften/TLS/OpenSSL/OpenSSLContextFactory.h"
- #include "Swiften/TLS/OpenSSL/OpenSSLCertificateFactory.h"
+ #include <Swiften/TLS/OpenSSL/OpenSSLContextFactory.h>
+ #include <Swiften/TLS/OpenSSL/OpenSSLCertificateFactory.h>
#endif
#ifdef HAVE_SCHANNEL
- #include "Swiften/TLS/Schannel/SchannelContextFactory.h"
- #include "Swiften/TLS/Schannel/SchannelCertificateFactory.h"
+ #include <Swiften/TLS/Schannel/SchannelContextFactory.h>
+ #include <Swiften/TLS/Schannel/SchannelCertificateFactory.h>
#endif
namespace Swift {