X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=radsecproxy.c;h=b2794184d75db9dfc96c821e094b1701105a8e67;hb=f41042e6afb1d12275fd3f30a1ecb309b83a2937;hp=4d6cc1ab74fbf0fdecb58f62cc76980e20f5fb75;hpb=6bf4f8868cd1681a795b2f2cb87d3f86fa33c04a;p=radsecproxy.git diff --git a/radsecproxy.c b/radsecproxy.c index 4d6cc1a..b279418 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -2758,7 +2758,7 @@ int confclient_cb(struct gconffile **cf, void *arg, char *block, char *opt, char if (!addhostport(&conf->hostports, conf->hostsrc, conf->pdef->portdefault, 1) || !resolvehostports(conf->hostports, conf->pdef->socktype)) - debugx(1, DBG_ERR, "resolve failed, exiting"); + debugx(1, DBG_ERR, "%s: resolve failed, exiting", __func__); if (!conf->secret) { if (!conf->pdef->secretdefault) @@ -2820,7 +2820,7 @@ int compileserverconfig(struct clsrvconf *conf, const char *block) { } if (!conf->dynamiclookupcommand && !resolvehostports(conf->hostports, conf->pdef->socktype)) { - debug(DBG_ERR, "resolve failed, exiting"); + debug(DBG_ERR, "%s: resolve failed", __func__); return 0; } return 1;