From: Alan T. DeKok Date: Tue, 18 Dec 2018 21:20:06 +0000 (-0500) Subject: MS-CHAP stuff is in radius dictionary, not freeradius X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=acf1d036600bf7c3a3e20f645a87ea79183fee6e;p=thirdparty%2Ffreeradius-server.git MS-CHAP stuff is in radius dictionary, not freeradius --- diff --git a/src/bin/radclient.c b/src/bin/radclient.c index c483a5d6f0a..e83f4047430 100644 --- a/src/bin/radclient.c +++ b/src/bin/radclient.c @@ -134,8 +134,8 @@ fr_dict_attr_autoload_t radclient_dict_attr[] = { { .out = &attr_digest_uri, .name = "Digest-URI", .type = FR_TYPE_STRING, .dict = &dict_freeradius }, { .out = &attr_digest_user_name, .name = "Digest-User-Name", .type = FR_TYPE_STRING, .dict = &dict_freeradius }, - { .out = &attr_ms_chap_challenge, .name = "MS-CHAP-Challenge", .type = FR_TYPE_OCTETS, .dict = &dict_freeradius }, - { .out = &attr_ms_chap_password, .name = "MS-CHAP-Password", .type = FR_TYPE_STRING, .dict = &dict_freeradius }, + { .out = &attr_ms_chap_challenge, .name = "MS-CHAP-Challenge", .type = FR_TYPE_OCTETS, .dict = &dict_radius }, + { .out = &attr_ms_chap_password, .name = "MS-CHAP-Password", .type = FR_TYPE_STRING, .dict = &dict_radius }, { .out = &attr_ms_chap_response, .name = "MS-CHAP-Response", .type = FR_TYPE_OCTETS, .dict = &dict_radius }, { .out = &attr_packet_dst_ip_address, .name = "Packet-Dst-IP-Address", .type = FR_TYPE_IPV4_ADDR, .dict = &dict_freeradius },