From 32424a8d962009913d2ee0ccba87b1ccb3813ad9 Mon Sep 17 00:00:00 2001 From: jmayer Date: Wed, 27 Jul 2005 18:15:07 +0000 Subject: [PATCH] As Guy mentioned: last patch replaced one occurrence too many, thus the dictionary keyword encrypt was changed from encrypt to encrypted too. Undo this. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15121 f5534014-38df-0310-8fa8-9805f1628bb7 --- epan/radius_dict.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/radius_dict.l b/epan/radius_dict.l index d8840035f8..b3a575b311 100644 --- a/epan/radius_dict.l +++ b/epan/radius_dict.l @@ -109,7 +109,7 @@ ifid { attr_type = radius_ifid; BEGIN ATTR_W_TYPE; } [0-9a-z_-]+ { attr_type = radius_octets; BEGIN ATTR_W_TYPE; } has_tag[,]? { has_tag = TRUE; attr_vendor = NULL; BEGIN ATTR_W_VENDOR; } -encrypted=1[,]? { encrypted=TRUE; attr_vendor = NULL; BEGIN ATTR_W_VENDOR; } +encrypt=1[,]? { encrypted=TRUE; attr_vendor = NULL; BEGIN ATTR_W_VENDOR; } [,0-9a-z_-]+=([^\n]+) { /* ignore other parameters */ attr_vendor = NULL; BEGIN ATTR_W_VENDOR; } [0-9a-z_-]+ { attr_vendor = g_strdup(yytext); add_attribute(attr_name,attr_id,attr_type,attr_vendor,encrypted,has_tag); attr_vendor = NULL; BEGIN OUT; } \n { add_attribute(attr_name,attr_id,attr_type,current_vendor ? g_strdup(current_vendor) : NULL ,encrypted,has_tag); linenums[include_stack_ptr]++; BEGIN OUT; } -- 2.34.1