diff options
| author | 2013-09-07 10:46:31 +0000 | |
|---|---|---|
| committer | 2013-09-07 10:46:31 +0000 | |
| commit | 7ee383fa5c202f1c10ca01da8c640647b68a73a2 (patch) | |
| tree | 738cd781645317602eb55aa575b44a502537455b /usr.sbin/ldapd/ssl.c | |
| parent | Plug a memory leak when walking the pfTblAddrTable in PF-MIB (diff) | |
| download | wireguard-openbsd-7ee383fa5c202f1c10ca01da8c640647b68a73a2.tar.xz wireguard-openbsd-7ee383fa5c202f1c10ca01da8c640647b68a73a2.zip | |
Change default ciphers to HIGH:!aNULL.
reyk@ ok
Diffstat (limited to 'usr.sbin/ldapd/ssl.c')
| -rw-r--r-- | usr.sbin/ldapd/ssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldapd/ssl.c b/usr.sbin/ldapd/ssl.c index 2bf992ba330..06fe4beb90b 100644 --- a/usr.sbin/ldapd/ssl.c +++ b/usr.sbin/ldapd/ssl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.c,v 1.5 2013/01/28 13:42:14 gilles Exp $ */ +/* $OpenBSD: ssl.c,v 1.6 2013/09/07 10:46:32 fgsch Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -40,7 +40,7 @@ #include "ldapd.h" -#define SSL_CIPHERS "HIGH" +#define SSL_CIPHERS "HIGH:!aNULL" void ssl_error(const char *); char *ssl_load_file(const char *, off_t *); |
