aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rpc.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-11-23 03:38:00 +0000
committerGuy Harris <guy@alum.mit.edu>2002-11-23 03:38:00 +0000
commit46255d29ea0904e963984567015b52f715683ca7 (patch)
tree4031247a03a3bb75b4c0636cb579e3be8f86414d /packet-rpc.c
parent93dcf69ba59b9d3b194580e0a5a97a6f8332005c (diff)
From Mike Frisch: fix the display of the nickname in an ONC RPC AUTH_DH
header. svn path=/trunk/; revision=6667
Diffstat (limited to 'packet-rpc.c')
-rw-r--r--packet-rpc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-rpc.c b/packet-rpc.c
index 466364aa81..7fb0747ff8 100644
--- a/packet-rpc.c
+++ b/packet-rpc.c
@@ -2,7 +2,7 @@
* Routines for rpc dissection
* Copyright 1999, Uwe Girlich <Uwe.Girlich@philosys.de>
*
- * $Id: packet-rpc.c,v 1.109 2002/11/18 09:35:29 girlich Exp $
+ * $Id: packet-rpc.c,v 1.110 2002/11/23 03:38:00 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -900,7 +900,7 @@ dissect_rpc_authdes_cred(tvbuff_t* tvb, proto_tree* tree, int offset)
case AUTHDES_NAMEKIND_NICKNAME:
nickname = tvb_get_ntohl(tvb, offset+0);
proto_tree_add_uint(tree, hf_rpc_authdes_nickname, tvb, offset+0, 4,
- window);
+ nickname);
offset += 4;
break;
}