From: Arran Cudbard-Bell Date: Tue, 30 Dec 2014 21:51:28 +0000 (-0500) Subject: Build without TLS X-Git-Tag: release_3_0_7~391 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd1cd8511bc92254ff644a5e3243778f65586b49;p=thirdparty%2Ffreeradius-server.git Build without TLS --- diff --git a/src/main/realms.c b/src/main/realms.c index d43b0aae174..75ae7e7f197 100644 --- a/src/main/realms.c +++ b/src/main/realms.c @@ -511,7 +511,11 @@ bool realm_home_server_add(home_server_t *home) home->name ? ")" : "", buffer, fr_int2str(home_proto, home->proto, ""), +#ifdef WITH_TLS home->tls ? "+tls" : "", +#else + "", +#endif home->port); return false;