From: Alan T. DeKok Date: Tue, 23 Feb 2016 17:24:18 +0000 (-0500) Subject: Use correct packet for CoA X-Git-Tag: release_3_0_12~211 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f958bed976a42c862bbf70b0877e696fe2c98b4;p=thirdparty%2Ffreeradius-server.git Use correct packet for CoA --- diff --git a/src/main/tmpl.c b/src/main/tmpl.c index a310b3687d0..919cc860eab 100644 --- a/src/main/tmpl.c +++ b/src/main/tmpl.c @@ -300,11 +300,11 @@ RADIUS_PACKET *radius_packet(REQUEST *request, pair_lists_t list) #ifdef WITH_COA case PAIR_LIST_COA: case PAIR_LIST_DM: - return request->coa->packet; + return request->coa->proxy; case PAIR_LIST_COA_REPLY: case PAIR_LIST_DM_REPLY: - return request->coa->reply; + return request->coa->proxy_reply; #endif }