]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Ignore "client", too. Fixes #1603
authorAlan T. DeKok <aland@freeradius.org>
Fri, 6 May 2016 13:11:10 +0000 (09:11 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 6 May 2016 13:11:10 +0000 (09:11 -0400)
src/main/modules.c

index 52b20f4fb1baf9a5d3fd9620634aa53a104088b5..6995839dea6147b426a6c72571468abce9ff314a 100644 (file)
@@ -1479,6 +1479,7 @@ int virtual_servers_bootstrap(CONF_SECTION *config)
                         *      Ignore clients and listeners for now.
                         */
                        if (strcmp(name1, "clients") == 0) continue;
+                       if (strcmp(name1, "client") == 0) continue;
 
                        if (strcmp(name1, "listen") == 0) {
                                if (listen_bootstrap(cs, subcs, server_name) < 0) return -1;