s4:lib/tls - include GNUTLS headers consistently using <...>
authorMatthias Dieter Wallnöfer <mdw@samba.org>
Fri, 17 Feb 2012 21:58:07 +0000 (22:58 +0100)
committerMatthias Dieter Wallnöfer <mdw@samba.org>
Fri, 17 Feb 2012 23:43:58 +0000 (00:43 +0100)
These are system-specific.

Reviewed-by: Jelmer
Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Sat Feb 18 00:43:58 CET 2012 on sn-devel-104

source4/lib/tls/tls.c
source4/lib/tls/tls_tstream.c
source4/lib/tls/tlscert.c

index 82cf2600bd1ba105a55244f4b0e2371c08e59dee..7bf2ff8e432a3d7db24f29d08f9c7a714caf2af7 100644 (file)
@@ -28,7 +28,7 @@
 #include "param/param.h"
 
 #if ENABLE_GNUTLS
-#include "gnutls/gnutls.h"
+#include <gnutls/gnutls.h>
 
 #define DH_BITS 1024
 
index eb4a6d90dad31510eb2764cd109b2d6c3748fd9b..6bb68fb34c0a9e606fec5130bf8cdbb8b9aac948 100644 (file)
@@ -25,7 +25,7 @@
 #include "lib/tls/tls.h"
 
 #if ENABLE_GNUTLS
-#include "gnutls/gnutls.h"
+#include <gnutls/gnutls.h>
 
 #define DH_BITS 1024
 
index bef634803a6c8ddce4727d0f4e40aa80a83d0418..0c780ea2f30f11b249811c2c7911cfa1f3f8fcc6 100644 (file)
@@ -22,8 +22,8 @@
 #include "includes.h"
 
 #if ENABLE_GNUTLS
-#include "gnutls/gnutls.h"
-#include "gnutls/x509.h"
+#include <gnutls/gnutls.h>
+#include <gnutls/x509.h>
 #if HAVE_GCRYPT_H
 #include <gcrypt.h>
 #endif