]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Build without TLS
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Tue, 30 Dec 2014 21:51:28 +0000 (16:51 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 31 Dec 2014 01:39:56 +0000 (20:39 -0500)
src/main/realms.c

index d43b0aae174e78dc0bd428c01715980b0d9fd734..75ae7e7f197137916bac3a1a474e25249f297328 100644 (file)
@@ -511,7 +511,11 @@ bool realm_home_server_add(home_server_t *home)
                              home->name ? ")" : "",
                              buffer,
                              fr_int2str(home_proto, home->proto, "<INVALID>"),
+#ifdef WITH_TLS
                              home->tls ? "+tls" : "",
+#else
+                             "",
+#endif
                              home->port);
 
                return false;