aboutsummaryrefslogtreecommitdiffstats
path: root/packet-esis.c
diff options
context:
space:
mode:
authordeniel <deniel@f5534014-38df-0310-8fa8-9805f1628bb7>2000-08-10 16:04:33 +0000
committerdeniel <deniel@f5534014-38df-0310-8fa8-9805f1628bb7>2000-08-10 16:04:33 +0000
commit5b0f2e01b62342342e74270e36e6fd1ddd5759a5 (patch)
treec92c0bf76918e44294ea656429956ab4388f0b2c /packet-esis.c
parentcd0f781da4a290aefdb21e11b055ccedb8c8b984 (diff)
- add proto_tree_add_text_valist
- remove stdarg.h include in proto.c and add a more correct one in proto.h - fix esis_dissect_unknown and isis_dissect_unknown git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2245 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-esis.c')
-rw-r--r--packet-esis.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-esis.c b/packet-esis.c
index aac7aa3291..057188b78c 100644
--- a/packet-esis.c
+++ b/packet-esis.c
@@ -2,7 +2,7 @@
* Routines for ISO/OSI End System to Intermediate System
* Routeing Exchange Protocol ISO 9542.
*
- * $Id: packet-esis.c,v 1.5 2000/08/07 03:20:31 guy Exp $
+ * $Id: packet-esis.c,v 1.6 2000/08/10 16:04:33 deniel Exp $
* Ralf Schneider <Ralf.Schneider@t-online.de>
*
* Ethereal - Network traffic analyzer
@@ -166,7 +166,7 @@ esis_dissect_unknown(int offset,guint length,proto_tree *tree,frame_data *fd,
}
va_start(ap, fmat);
- proto_tree_add_text(tree, NullTVB, offset, length, fmat, ap);
+ proto_tree_add_text_valist(tree, NullTVB, offset, length, fmat, ap);
va_end(ap);
}