aboutsummaryrefslogtreecommitdiffstats
path: root/packet-giop.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-07-03 02:27:29 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-07-03 02:27:29 +0000
commitc4bd35cf04efac3ba6e76f505ec012719d1c2e56 (patch)
tree573b4eada4fe84ca5e8c1859be06c21f7abe3fba /packet-giop.c
parent687b2e7f0b3e5828255aebfd13e9797db7c06098 (diff)
If the reply status isn't handled, don't complain about an unknown
exception, complain about an unknown reply status - it isn't necessarily an exception. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3642 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-giop.c')
-rw-r--r--packet-giop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-giop.c b/packet-giop.c
index 9fb8989b1e..dd21b0375a 100644
--- a/packet-giop.c
+++ b/packet-giop.c
@@ -9,7 +9,7 @@
* Frank Singleton <frank.singleton@ericsson.com>
* Trevor Shepherd <eustrsd@am1.ericsson.se>
*
- * $Id: packet-giop.c,v 1.39 2001/06/29 20:49:29 guy Exp $
+ * $Id: packet-giop.c,v 1.40 2001/07/03 02:27:29 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -3006,7 +3006,7 @@ dissect_reply_body (tvbuff_t *tvb, u_int offset, packet_info *pinfo,
default:
- g_warning("giop: UNKNOWN_EXCEPTION %i request_id = %u\n",reply_status, header->req_id);
+ g_warning("giop: Unknown reply status %i request_id = %u\n",reply_status, header->req_id);
break;