Skip to content

Commit b021312

Browse files
committed
better if it's a warning, as the message isn't an error
1 parent fa61fe4 commit b021312

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/process.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3093,11 +3093,11 @@ int request_proxy_reply(RADIUS_PACKET *packet)
30933093
if ((packet->code != PW_CODE_PROTOCOL_ERROR) &&
30943094
(request->proxy->code != PW_CODE_STATUS_SERVER)) {
30953095
if (reply2request[packet->code] != request->proxy->code) {
3096-
RERROR("Proxy sent %s and received unexpected %s in response.",
3096+
RWARN("Proxy sent %s and received unexpected %s in response.",
30973097
fr_packet_codes[request->proxy->code], fr_packet_codes[packet->code]);
3098-
REDEBUG("Please update the home server to send the correct code.");
3099-
REDEBUG("The Response Authenticator is correct, so we are processing the packet.");
3100-
REDEBUG("However, the server is likely to do the wrong thing with the wrong response code.");
3098+
RWDEBUG("Please update the home server to send the correct code.");
3099+
RWDEBUG("The Response Authenticator is correct, so we are processing the packet.");
3100+
RWDEBUG("However, the server is likely to do the wrong thing with the wrong response code.");
31013101
}
31023102
}
31033103

0 commit comments

Comments
 (0)