From: Alan T. DeKok Date: Tue, 16 Aug 2011 00:36:00 +0000 (-0400) Subject: More log message clenups X-Git-Tag: release_3_0_0_beta0~674 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=150bc7b673ecf1cc75a3c0ea1cde17df48cb2ded;p=thirdparty%2Ffreeradius-server.git More log message clenups --- diff --git a/src/main/process.c b/src/main/process.c index b0489e272ae..ec78f79e134 100644 --- a/src/main/process.c +++ b/src/main/process.c @@ -2207,6 +2207,7 @@ static int request_proxy(REQUEST *request, int retransmit) * We're actually sending a proxied packet. Do that now. */ if (!insert_into_proxy_hash(request)) { + radlog_request(L_PROXY, 0, request, "Failed to insert initial packet into the proxy list."); return -1; } @@ -2271,7 +2272,7 @@ static int request_proxy_anew(REQUEST *request) * Don't free the old Id on error. */ if (!insert_into_proxy_hash(request)) { - radlog(L_PROXY,"Failed to insert retransmission of request %u into the proxy list.", request->number); + radlog_request(L_PROXY, 0, request, "Failed to insert retransmission into the proxy list."); goto post_proxy_fail; }