diff options
author | Luis Ontanon <luis.ontanon@gmail.com> | 2005-07-13 23:40:06 +0000 |
---|---|---|
committer | Luis Ontanon <luis.ontanon@gmail.com> | 2005-07-13 23:40:06 +0000 |
commit | df4cce353bf4f1c884badd133e124515775f175a (patch) | |
tree | c172ce0d46fbf21b2fabe029727165887fb90329 /asn1 | |
parent | 383564aff07fcaf0e2b258276b284fce28e76c2d (diff) | |
download | wireshark-df4cce353bf4f1c884badd133e124515775f175a.tar.gz wireshark-df4cce353bf4f1c884badd133e124515775f175a.tar.bz2 wireshark-df4cce353bf4f1c884badd133e124515775f175a.zip |
fix a string
svn path=/trunk/; revision=14915
Diffstat (limited to 'asn1')
-rw-r--r-- | asn1/h248/packet-h248-template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/h248/packet-h248-template.c b/asn1/h248/packet-h248-template.c index eef1dc1287..a21286e147 100644 --- a/asn1/h248/packet-h248-template.c +++ b/asn1/h248/packet-h248-template.c @@ -366,7 +366,7 @@ static int dissect_h248_ctx_id(gboolean implicit_tag, packet_info *pinfo, proto_ switch(context_id) { case 0x0000000: strncpy(context_string,"Ctx 0",sizeof(context_string)); - strncpy(context_string,"0 (Null Context)",sizeof(context_string)); + strncpy(context_string_long,"0 (Null Context)",sizeof(context_string)); break; case 0xFFFFFFFF: strncpy(context_string,"Ctx *",sizeof(context_string)); |