]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Print app name
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 29 Jun 2017 02:24:48 +0000 (22:24 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 29 Jun 2017 02:24:48 +0000 (22:24 -0400)
src/main/virtual_servers.c

index 53d3a0a12c49a22980b5224e0a9be54a175952e4..4677e5a11972763ce9d8747e5ec0561a81770582 100644 (file)
@@ -659,7 +659,8 @@ int virtual_servers_open(fr_schedule_t *sc)
                        if (!listen || !listen->proto_module) continue;                 /* Skip old style */
                        if (listen->app->open &&
                            listen->app->open(listen->proto_module->data, sc, listen->proto_module->conf) < 0) {
-                               cf_log_err(listen->proto_module->conf, "Opening I/O interface failed");
+                               cf_log_err(listen->proto_module->conf, "Opening %s I/O interface failed",
+                                          listen->app->name);
                                return -1;
                        }
                }