Bug ID |
9025
|
Summary |
~operator not implemented in mate although documented.
|
Classification |
Unclassified
|
Product |
Wireshark
|
Version |
1.10.1
|
Hardware |
x86
|
OS |
Windows 7
|
Status |
UNCONFIRMED
|
Severity |
Major
|
Priority |
Low
|
Component |
Common utilities (libwsutil)
|
Assignee |
[email protected]
|
Reporter |
[email protected]
|
Build Information:
--
Jeff Morris:
A little digging found me this routine in mate_util.c:
/**
* match_avp:
* @src: an src to be compared agains an "op" avp
* @op: the "op" avp that will be matched against the src avp
*
* Checks whether or not two avp's match.
*
* Return value: a pointer to the src avp if there's a match.
*
**/
extern AVP* match_avp(AVP* src, AVP* op) {
At the end it has this code snippet:
case AVP_OP_CONTAINS:
/* TODO */
return NULL;
so it appears that, yes, the ~ operator is not implemented.
You are receiving this mail because:
- You are watching all bug changes.