New activity for FreeRADIUS (the high performance and highly configurable RADIUS server) ====== Merge pull request #720 from qnet-herwin/perl_arrays Fixed adding attributes with multiple values to rlm_perl Arran Cudbard-Bell@2014-07-02T19:35:36Z Files modified: * src/modules/rlm_perl/rlm_perl.c Commit diff: https://github.com/FreeRADIUS/freeradius-server/commit/136839028c267856bc3c1... ====== Fixed adding attributes with multiple values to rlm_perl Without this fix, the array in Perl would start with the value of the first attribute in the packet, combined with the actual values of the attribute. The debug log would look like this: $RAD_REPLY{'User-Name'}[0] = &reply:User-Name -> 'anonymous' $RAD_REPLY{'h323-credit-amount'}[1] = &reply:h323-credit-amount -> '100' $RAD_REPLY{'h323-credit-amount'}[2] = &reply:h323-credit-amount -> '101' The actual value of $RAD_REPLY{'h323-credit-amount'} is ['anonymous','100','101'] Herwin Weststrate@2014-07-02T19:21:01Z Files modified: * src/modules/rlm_perl/rlm_perl.c Commit diff: https://github.com/FreeRADIUS/freeradius-server/commit/bff37ca5088181511f590... ====== -- This commit summary was generated @2014-07-03T00:00:01Z by lgfeed version 0.00 (https://github.com/arr2036/lgfeed).