summaryrefslogtreecommitdiffstats
path: root/fix/Values.xsl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:33 +0000
commit9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9 (patch)
tree2784370cda9bbf2da9114d70f05399c0b229d28c /fix/Values.xsl
parentAdding debian version 4.2.6-1. (diff)
downloadwireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.tar.xz
wireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.zip
Merging upstream version 4.4.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'fix/Values.xsl')
-rw-r--r--fix/Values.xsl5
1 files changed, 2 insertions, 3 deletions
diff --git a/fix/Values.xsl b/fix/Values.xsl
index 106eb68b..d95a5f07 100644
--- a/fix/Values.xsl
+++ b/fix/Values.xsl
@@ -14,7 +14,6 @@ Syntax: xsltproc Values.xsl FIX44.xml
typedef struct _fix_field {
int tag; /* FIX tag */
- int hf_id;
int type; /* */
const void *table;
} fix_field;
@@ -24,7 +23,7 @@ typedef struct _fix_field {
</xsl:template>
<!--
-translate(@description,$uppercase,$smallcase)
+translate(@description,$uppercase,$smallcase)
-->
<xsl:variable name="smallcase" select="'abcdefghijklmnopqrstuvwxyz'" />
@@ -59,7 +58,7 @@ translate(@description,$uppercase,$smallcase)
<xsl:template match="fix/messages">
static const string_string messages_val[] = {<xsl:for-each select="message">
{ "<xsl:value-of select="@msgtype"/>", "<xsl:value-of select="@name"/>" },</xsl:for-each>
- { "", NULL }
+ { 0, NULL }
};
</xsl:template>