From: Arran Cudbard-Bell Date: Sun, 15 May 2016 12:36:12 +0000 (-0400) Subject: Print the number of the unknown type X-Git-Tag: branch_3_1_x~377 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24b606e47f0da02ca85898f3532148a7ac48a3e4;p=thirdparty%2Ffreeradius-server.git Print the number of the unknown type --- diff --git a/src/main/conffile.c b/src/main/conffile.c index 914179ca650..ce2a9296f07 100644 --- a/src/main/conffile.c +++ b/src/main/conffile.c @@ -1883,8 +1883,8 @@ static int cf_pair_parse_value(void *out, TALLOC_CTX *ctx, CONF_SECTION *cs, CON rad_assert(type > PW_TYPE_INVALID); rad_assert(type < PW_TYPE_MAX); - cf_log_err(&(cp->item), "type '%s' is not supported in the configuration files", - fr_int2str(dict_attr_types, type, "?Unknown?")); + cf_log_err(&(cp->item), "type '%s' (%i) is not supported in the configuration files", + fr_int2str(dict_attr_types, type, "?Unknown?"), type); rcode = -1; goto error; }