aboutsummaryrefslogtreecommitdiffstats
path: root/packet-giop.c
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2000-09-01 16:02:36 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2000-09-01 16:02:36 +0000
commit6afebccbac7f35df2824ef1aceec5f509b981e47 (patch)
tree98383cdc98a0d75ac480f7d7318f2d33b4fe2fa8 /packet-giop.c
parentd481598331bed6ec6614b780deb08c0938f18743 (diff)
Fix labelling of endianness. Error reported by
Ken A. Rederg�rd <kenr@trustix.com> git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2387 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-giop.c')
-rw-r--r--packet-giop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-giop.c b/packet-giop.c
index b134d3198f..14bc4d3b24 100644
--- a/packet-giop.c
+++ b/packet-giop.c
@@ -3,7 +3,7 @@
*
* Laurent Deniel <deniel@worldnet.fr>
*
- * $Id: packet-giop.c,v 1.17 2000/08/13 14:08:11 deniel Exp $
+ * $Id: packet-giop.c,v 1.18 2000/09/01 16:02:36 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -300,13 +300,13 @@ dissect_giop(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
proto_tree_add_text(clnp_tree, NullTVB, offset + 6, 1,
"Flags: 0x%02x (%s%s)",
header.flags,
- (big_endian) ? "little" : "big",
+ (big_endian) ? "big" : "little",
(header.flags & 0x02) ? " fragment" : "");
break;
case 0 :
proto_tree_add_text(clnp_tree, NullTVB, offset + 6, 1,
"Byte ordering: %s endian",
- (big_endian) ? "little" : "big");
+ (big_endian) ? "big" : "little");
break;
default :
break;