aboutsummaryrefslogtreecommitdiffstats
path: root/packet-time.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-03-06 20:04:53 +0000
committerGuy Harris <guy@alum.mit.edu>2000-03-06 20:04:53 +0000
commit8c200212c7deced89c22aa3f6428801b8f6aaed4 (patch)
tree236a4dea550a3adfb88c8f389d8feeb52895520e /packet-time.c
parent0e2751238c08e2bb68e991ed809907d170083aaa (diff)
Fix some "proto_tree_add_text()" calls.
svn path=/trunk/; revision=1695
Diffstat (limited to 'packet-time.c')
-rw-r--r--packet-time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-time.c b/packet-time.c
index 355ef313f2..279d8f52c3 100644
--- a/packet-time.c
+++ b/packet-time.c
@@ -5,7 +5,7 @@
* Craig Newell <CraigN@cheque.uq.edu.au>
* RFC2347 TIME Option Extension
*
- * $Id: packet-time.c,v 1.1 2000/02/09 17:17:00 gram Exp $
+ * $Id: packet-time.c,v 1.2 2000/03/06 20:04:53 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -62,7 +62,7 @@ dissect_time(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
if (pi.srcport == 37) {
guint32 delta_seconds = pntohl(pd+offset);
proto_tree_add_text(time_tree, offset, 4,
- " %lu seconds since midnight 1 January 1900 GMT",
+ " %u seconds since midnight 1 January 1900 GMT",
delta_seconds);
}
}