aboutsummaryrefslogtreecommitdiffstats
path: root/packet-wbxml.c
diff options
context:
space:
mode:
authorobiot <obiot@f5534014-38df-0310-8fa8-9805f1628bb7>2003-12-13 13:27:30 +0000
committerobiot <obiot@f5534014-38df-0310-8fa8-9805f1628bb7>2003-12-13 13:27:30 +0000
commit030019e70074505edaaaf4f828881c4a2ee92ac4 (patch)
tree9e1b52308819030724575aa75e55f3564c166496 /packet-wbxml.c
parent5a99c90ed8a23b2a1b20ffd70bd577fdbfb9ace9 (diff)
Add an equal sign to WBXML Attribute Start items that didn't have it.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9271 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-wbxml.c')
-rw-r--r--packet-wbxml.c30
1 files changed, 18 insertions, 12 deletions
diff --git a/packet-wbxml.c b/packet-wbxml.c
index 4ead456807..78aca10934 100644
--- a/packet-wbxml.c
+++ b/packet-wbxml.c
@@ -2,7 +2,7 @@
* Routines for wbxml dissection
* Copyright 2003, Olivier Biot <olivier.biot (ad) siemens.com>
*
- * $Id: packet-wbxml.c,v 1.19 2003/12/12 23:35:22 obiot Exp $
+ * $Id: packet-wbxml.c,v 1.20 2003/12/13 13:27:30 obiot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -245,6 +245,12 @@ static const value_string vals_wbxml1x_global_tokens[] = {
/********************** WBXML token mapping definition **********************/
+/*
+ * NOTE: Please make sure the Attribute Start values all contain an equal sign
+ * even in cases where they do not contain the start of an Attribute
+ * Value.
+ */
+
/* WML 1.0
*
@@ -1584,21 +1590,21 @@ static const value_string wbxml_channelc10_tags_cp0[] = {
/***** Attribute Start tokens *****/
static const value_string wbxml_channelc10_attrStart_cp0[] = {
/* 0x00 -- 0x04 GLOBAL */
- { 0x05, "maxspace" },
- { 0x06, "base" },
- { 0x07, "href" },
+ { 0x05, "maxspace=" },
+ { 0x06, "base=" },
+ { 0x07, "href=" },
{ 0x08, "href='http://'" },
{ 0x09, "href='https://'" },
- { 0x0A, "lastmod" },
- { 0x0B, "etag" },
- { 0x0C, "md5" },
- { 0x0D, "success" },
+ { 0x0A, "lastmod=" },
+ { 0x0B, "etag=" },
+ { 0x0C, "md5=" },
+ { 0x0D, "success=" },
{ 0x0E, "success='http://'" },
{ 0x0F, "success='https://'" },
- { 0x10, "failure" },
+ { 0x10, "failure=" },
{ 0x11, "failure='http://'" },
{ 0x12, "failure='https://'" },
- { 0x13, "EventId" },
+ { 0x13, "EventId=" },
{ 0x00, NULL }
};
@@ -1644,8 +1650,8 @@ static const value_string wbxml_nokiaprovc70_attrStart_cp0[] = {
{ 0x06, "TYPE='ADDRESS'" },
{ 0x07, "TYPE='URL'" },
{ 0x08, "TYPE='NAME'" },
- { 0x10, "NAME" },
- { 0x11, "VALUE" },
+ { 0x10, "NAME=" },
+ { 0x11, "VALUE=" },
{ 0x12, "NAME='BEARER'" },
{ 0x13, "NAME='PROXY'" },
{ 0x14, "NAME='PORT'" },