aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ucp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-02-15 11:24:45 +0000
committerGuy Harris <guy@alum.mit.edu>2002-02-15 11:24:45 +0000
commit44ba4504b4dc2fc4d9715fde5a0075f2114c59c9 (patch)
tree1ff5424488e38f4f6d2a15971552977984c52bd3 /packet-ucp.c
parente36aa9657d6eb0eb01dab4932e8db83264723681 (diff)
Undo the change of "UcpHandleByte(hf_ucp_parm_NT);" to
"UcpHandleString(hf_ucp_parm_NT);" - the field really is one character long, as per the (correct) change from FT_STRING to FT_UINT8. svn path=/trunk/; revision=4739
Diffstat (limited to 'packet-ucp.c')
-rw-r--r--packet-ucp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ucp.c b/packet-ucp.c
index b0c2b06880..20b3aef6f5 100644
--- a/packet-ucp.c
+++ b/packet-ucp.c
@@ -2,7 +2,7 @@
* Routines for Universal Computer Protocol dissection
* Copyright 2001, Tom Uijldert <tom.uijldert@cmg.nl>
*
- * $Id: packet-ucp.c,v 1.12 2002/02/14 16:48:08 gram Exp $
+ * $Id: packet-ucp.c,v 1.13 2002/02/15 11:24:45 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1438,7 +1438,7 @@ add_5xO(proto_tree *tree, tvbuff_t *tvb)
UcpHandleString(hf_ucp_parm_AC);
UcpHandleByte(hf_ucp_parm_NRq);
UcpHandleString(hf_ucp_parm_NAdC);
- UcpHandleString(hf_ucp_parm_NT);
+ UcpHandleByte(hf_ucp_parm_NT);
UcpHandleInt(hf_ucp_parm_NPID);
UcpHandleByte(hf_ucp_parm_LRq);
UcpHandleString(hf_ucp_parm_LRAd);