aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-diameter.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-02-28 20:49:34 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-02-28 20:49:34 +0000
commit3167213f5d2a3d460ecb5f435db8e742d4eaa310 (patch)
tree8e97efc4f5e0dc23b28c4ef6fa5879c6b3101903 /epan/dissectors/packet-diameter.c
parente09fcce6370c45c8a55638622d306fcc7f4cbd01 (diff)
Undo change of return (addVendor(atoi(id), code, name)); as it wasn't correct.
svn path=/trunk/; revision=13553
Diffstat (limited to 'epan/dissectors/packet-diameter.c')
-rw-r--r--epan/dissectors/packet-diameter.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-diameter.c b/epan/dissectors/packet-diameter.c
index 7ec6ea5bd2..cf5def3579 100644
--- a/epan/dissectors/packet-diameter.c
+++ b/epan/dissectors/packet-diameter.c
@@ -636,7 +636,8 @@ xmlParseVendor(xmlNodePtr cur)
return -1;
}
- return (addVendor(atoi(id), code, name));
+ return (addVendor(atoi(code), id, name));
+
} /* addVendor */
/*