aboutsummaryrefslogtreecommitdiffstats
path: root/fix
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-01-05 10:12:44 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-01-05 10:12:44 +0000
commit5d6a6b46528b085d767f419a565f080941b6cd3c (patch)
tree781002753ed4c10d787c795fec6d359e8084ae38 /fix
parent3fdc413fd6a1d4c6698da26f36753fb6a324b23a (diff)
Fix regression from upgrade FIX 5.0 (Revision 46944)
../../../epan/dissectors/packet-fix.h:1450:10: error: multi-character character constant [-Werror=multichar] ../../../epan/dissectors/packet-fix.h:1451:10: error: multi-character character constant [-Werror=multichar] [...] When FIX field type is MULTIPLESTRINGVALUE use string_string (not value_string) And regenerated packet-fix.h svn path=/trunk/; revision=46947
Diffstat (limited to 'fix')
-rw-r--r--fix/FIX.xml2
-rw-r--r--fix/Values.xsl3
2 files changed, 4 insertions, 1 deletions
diff --git a/fix/FIX.xml b/fix/FIX.xml
index 2bb7148dd4..686f3f41e6 100644
--- a/fix/FIX.xml
+++ b/fix/FIX.xml
@@ -10604,4 +10604,4 @@
<field number='1620' name='RiskEncodedSecurityDescLen' type='LENGTH' />
<field number='1621' name='RiskEncodedSecurityDesc' type='DATA' />
</fields>
-</fix> \ No newline at end of file
+</fix>
diff --git a/fix/Values.xsl b/fix/Values.xsl
index 619cd9e54a..e4a2decb32 100644
--- a/fix/Values.xsl
+++ b/fix/Values.xsl
@@ -36,6 +36,7 @@ translate(@description,$uppercase,$smallcase)
<xsl:variable name="val_type" >
<xsl:choose>
<xsl:when test="@type='STRING'"> string_string </xsl:when>
+ <xsl:when test="@type='MULTIPLESTRINGVALUE'"> string_string </xsl:when>
<xsl:otherwise> value_string </xsl:otherwise>
</xsl:choose>
</xsl:variable>
@@ -44,6 +45,8 @@ translate(@description,$uppercase,$smallcase)
{ <xsl:value-of select="@enum"/>, "<xsl:value-of select="translate(@description,'_',' ')"/>" },</xsl:when>
<xsl:when test="../@type='STRING'">
{ "<xsl:value-of select="@enum"/>", "<xsl:value-of select="translate(@description,'_',' ')"/>" },</xsl:when>
+ <xsl:when test="../@type='MULTIPLESTRINGVALUE'">
+ { "<xsl:value-of select="@enum"/>", "<xsl:value-of select="translate(@description,'_',' ')"/>" },</xsl:when>
<xsl:otherwise>
{ '<xsl:value-of select="@enum"/>', "<xsl:value-of select="translate(@description,'_',' ')"/>" },</xsl:otherwise>
</xsl:choose>