aboutsummaryrefslogtreecommitdiffstats
path: root/packet-sip.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2004-05-04 21:12:24 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2004-05-04 21:12:24 +0000
commit72b9632d81578d7c1bef5805e2b659a8d57ba21e (patch)
tree4e4b8320860369e56451c7ddbda54f15d6d31810 /packet-sip.c
parenta5e422f0a34e4e10516831cfe7780ccd2160fa37 (diff)
Fixed a copy-paste error
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10797 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-sip.c')
-rw-r--r--packet-sip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-sip.c b/packet-sip.c
index da36e85f34..b52ef88c28 100644
--- a/packet-sip.c
+++ b/packet-sip.c
@@ -18,7 +18,7 @@
* Copyright 2000, Heikki Vatiainen <hessu@cs.tut.fi>
* Copyright 2001, Jean-Francois Mule <jfm@cablelabs.com>
*
- * $Id: packet-sip.c,v 1.66 2004/05/01 14:19:21 etxrab Exp $
+ * $Id: packet-sip.c,v 1.67 2004/05/04 21:12:24 etxrab Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1466,12 +1466,12 @@ void proto_register_sip(void)
"SIP Status-Line", HFILL }
},
{ &hf_sip_to_addr,
- { "SIP to address", "sip.from_addr",
+ { "SIP to address", "sip.to_addr",
FT_STRING, BASE_NONE,NULL,0x0,
"RFC 3261: from addr", HFILL }
},
{ &hf_sip_from_addr,
- { "SIP from address", "sip.to_addr",
+ { "SIP from address", "sip.from_addr",
FT_STRING, BASE_NONE,NULL,0x0,
"RFC 3261: to addr", HFILL }
},