aboutsummaryrefslogtreecommitdiffstats
path: root/packet-esis.c
diff options
context:
space:
mode:
authorLaurent Deniel <laurent.deniel@free.fr>2000-08-10 16:04:33 +0000
committerLaurent Deniel <laurent.deniel@free.fr>2000-08-10 16:04:33 +0000
commit4dcd76ae4be6428ccd95e74c22388b8522bedde3 (patch)
treec92c0bf76918e44294ea656429956ab4388f0b2c /packet-esis.c
parentc1f7e92131c27d81e03ce7aac95d6418320998f1 (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 svn path=/trunk/; revision=2245
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);
}