From: Alan T. DeKok Date: Wed, 8 Mar 2017 22:27:35 +0000 (-0500) Subject: use argument in print statement X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5f275ddf6579a7dd8044f8659c8d0b67dfda0d1;p=thirdparty%2Ffreeradius-server.git use argument in print statement --- diff --git a/src/lib/dict.c b/src/lib/dict.c index 9e0099363e3..402e10f8dd6 100644 --- a/src/lib/dict.c +++ b/src/lib/dict.c @@ -3832,7 +3832,7 @@ fr_dict_t *fr_dict_by_da(fr_dict_attr_t const *da) } if (!da_p->flags.is_root) { - fr_strerror_printf("%s: Attribute has not been inserted into a dictionary", __FUNCTION__, da->name); + fr_strerror_printf("%s: Attribute %s has not been inserted into a dictionary", __FUNCTION__, da->name); return NULL; }