diff options
author | Tim Potter <tpot@samba.org> | 2002-06-25 02:57:39 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-06-25 02:57:39 +0000 |
commit | 39c2537cd70603645b0a692cb9c9637564737b64 (patch) | |
tree | e50384514debc10c00fbd8882cf94a7d0452b2b9 /packet-dcerpc-nt.c | |
parent | a0590c995dee8afc1ada2d3b5e362eb254d659c3 (diff) | |
download | wireshark-39c2537cd70603645b0a692cb9c9637564737b64.tar.gz wireshark-39c2537cd70603645b0a692cb9c9637564737b64.tar.bz2 wireshark-39c2537cd70603645b0a692cb9c9637564737b64.zip |
Display the error code for a dos error that doesn't have a value string defined.
svn path=/trunk/; revision=5761
Diffstat (limited to 'packet-dcerpc-nt.c')
-rw-r--r-- | packet-dcerpc-nt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-dcerpc-nt.c b/packet-dcerpc-nt.c index f1d205a93e..cc9e4526d7 100644 --- a/packet-dcerpc-nt.c +++ b/packet-dcerpc-nt.c @@ -2,7 +2,7 @@ * Routines for DCERPC over SMB packet disassembly * Copyright 2001, Tim Potter <tpot@samba.org> * - * $Id: packet-dcerpc-nt.c,v 1.37 2002/06/05 04:17:47 tpot Exp $ + * $Id: packet-dcerpc-nt.c,v 1.38 2002/06/25 02:57:39 tpot Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -949,7 +949,7 @@ dissect_doserror(tvbuff_t *tvb, gint offset, packet_info *pinfo, if (status != 0 && check_col(pinfo->cinfo, COL_INFO)) col_append_fstr(pinfo->cinfo, COL_INFO, ", %s", val_to_str(status, DOS_errors, - "Unknown error")); + "Unknown error 0x%08x")); if (pdata) *pdata = status; |