As Guy mentioned: last patch replaced one occurrence too many,
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 27 Jul 2005 18:15:07 +0000 (18:15 +0000)
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 27 Jul 2005 18:15:07 +0000 (18:15 +0000)
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

index d8840035f802aaecc1073b4cb934431a124a9a6f..b3a575b3119b97aef3699b1fd6d32293114f31eb 100644 (file)
 <ATTR_W_ID>ifid                                                { attr_type = radius_ifid;  BEGIN ATTR_W_TYPE; }
 <ATTR_W_ID>[0-9a-z_-]+                         { attr_type = radius_octets;  BEGIN ATTR_W_TYPE; }
 <ATTR_W_TYPE>has_tag[,]?                       { has_tag = TRUE; attr_vendor = NULL;  BEGIN ATTR_W_VENDOR; }
-<ATTR_W_TYPE>encrypted=1[,]?                   { encrypted=TRUE;  attr_vendor = NULL;  BEGIN ATTR_W_VENDOR; }
+<ATTR_W_TYPE>encrypt=1[,]?                     { encrypted=TRUE;  attr_vendor = NULL;  BEGIN ATTR_W_VENDOR; }
 <ATTR_W_TYPE>[,0-9a-z_-]+=([^\n]+)     { /* ignore other parameters */  attr_vendor = NULL;  BEGIN ATTR_W_VENDOR; }
 <ATTR_W_TYPE>[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; }
 <ATTR_W_TYPE>\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; }