diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2012-02-17 22:58:07 +0100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2012-02-18 00:43:58 +0100 |
commit | 32c82fe69b588fe18674c0bda49cd7fc0f73f50a (patch) | |
tree | 897eabb9320f322672cb88b3e4666167dad4c71b /source4/lib | |
parent | fa89f2756f2d56ff83a5a6646ccff759b03f900d (diff) | |
download | samba-32c82fe69b588fe18674c0bda49cd7fc0f73f50a.tar.gz samba-32c82fe69b588fe18674c0bda49cd7fc0f73f50a.tar.bz2 samba-32c82fe69b588fe18674c0bda49cd7fc0f73f50a.zip |
s4:lib/tls - include GNUTLS headers consistently using <...>
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
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/tls/tls.c | 2 | ||||
-rw-r--r-- | source4/lib/tls/tls_tstream.c | 2 | ||||
-rw-r--r-- | source4/lib/tls/tlscert.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/source4/lib/tls/tls.c b/source4/lib/tls/tls.c index 82cf2600bd..7bf2ff8e43 100644 --- a/source4/lib/tls/tls.c +++ b/source4/lib/tls/tls.c @@ -28,7 +28,7 @@ #include "param/param.h" #if ENABLE_GNUTLS -#include "gnutls/gnutls.h" +#include <gnutls/gnutls.h> #define DH_BITS 1024 diff --git a/source4/lib/tls/tls_tstream.c b/source4/lib/tls/tls_tstream.c index eb4a6d90da..6bb68fb34c 100644 --- a/source4/lib/tls/tls_tstream.c +++ b/source4/lib/tls/tls_tstream.c @@ -25,7 +25,7 @@ #include "lib/tls/tls.h" #if ENABLE_GNUTLS -#include "gnutls/gnutls.h" +#include <gnutls/gnutls.h> #define DH_BITS 1024 diff --git a/source4/lib/tls/tlscert.c b/source4/lib/tls/tlscert.c index bef634803a..0c780ea2f3 100644 --- a/source4/lib/tls/tlscert.c +++ b/source4/lib/tls/tlscert.c @@ -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 |