From: Chris Hofstaedtler Date: Tue, 3 Apr 2018 08:37:00 +0000 (+0200) Subject: dnsdist: sort features in --version output X-Git-Tag: dnsdist-1.3.1~181^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3909bf10a3e8e08e4ea17e81d342f70cd26e1517;p=thirdparty%2Fpdns.git dnsdist: sort features in --version output --- diff --git a/pdns/dnsdist.cc b/pdns/dnsdist.cc index 0cf94293a0..60d3e24f4a 100644 --- a/pdns/dnsdist.cc +++ b/pdns/dnsdist.cc @@ -2147,7 +2147,10 @@ try #ifdef HAVE_DNS_OVER_TLS cout<<"dns-over-tls("; #ifdef HAVE_GNUTLS - cout<<"gnutls "; + cout<<"gnutls"; + #ifdef HAVE_LIBSSL + cout<<" "; + #endif #endif #ifdef HAVE_LIBSSL cout<<"openssl"; @@ -2160,12 +2163,12 @@ try #ifdef HAVE_EBPF cout<<"ebpf "; #endif -#ifdef HAVE_LIBSODIUM - cout<<"libsodium "; -#endif #ifdef HAVE_FSTRM cout<<"fstrm "; #endif +#ifdef HAVE_LIBSODIUM + cout<<"libsodium "; +#endif #ifdef HAVE_PROTOBUF cout<<"protobuf "; #endif