From: Arran Cudbard-Bell Date: Fri, 9 Jun 2017 01:16:48 +0000 (-0400) Subject: Minor fixes X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=143ab61c4a74f63a8b7e4458474d64b8aa9b2aa2;p=thirdparty%2Ffreeradius-server.git Minor fixes --- diff --git a/src/modules/proto_radius/proto_radius.c b/src/modules/proto_radius/proto_radius.c index b385cdd1f51..fc64e62ea2b 100644 --- a/src/modules/proto_radius/proto_radius.c +++ b/src/modules/proto_radius/proto_radius.c @@ -200,7 +200,7 @@ static int compile_type(proto_radius_ctx_t *ctx, CONF_SECTION *server, CONF_SECT } -static int open_transport(proto_radius_ctx_t *ctx, UNUSED fr_schedule_t *handle, +static int open_transport(proto_radius_ctx_t *ctx, fr_schedule_t *handle, CONF_SECTION *server, CONF_SECTION *cs, char const *value, bool verify_config) { @@ -260,7 +260,7 @@ static int open_transport(proto_radius_ctx_t *ctx, UNUSED fr_schedule_t *handle, if (verify_config) return 0; if (app_io->op.open(io_ctx) < 0) { - cf_log_err_cs(cs, "Failed opening I/O interface", value); + cf_log_err_cs(cs, "Failed opening I/O interface '%s'", value); return -1; }