aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sip.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-11-15 19:35:13 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-11-15 19:35:13 +0000
commit639c33908a6a38b52fe759f0dfdef9c26d50e575 (patch)
tree512faf9a1d5464c376e9d3c062cae49e1d116299 /epan/dissectors/packet-sip.c
parentda711f681d6e33bbebd602bcd5fd1179e33ce685 (diff)
More indentation cleanup.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39864 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-sip.c')
-rw-r--r--epan/dissectors/packet-sip.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/epan/dissectors/packet-sip.c b/epan/dissectors/packet-sip.c
index 36ed9e8df9..7a26c576f4 100644
--- a/epan/dissectors/packet-sip.c
+++ b/epan/dissectors/packet-sip.c
@@ -1504,17 +1504,17 @@ dissect_sip_contact_item(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gi
while(current_offset< line_end_offset){
while (queried_offset < line_end_offset)
{
- queried_offset++;
- c = tvb_get_guint8(tvb, queried_offset);
- switch (c) {
- case ',':
- case ';':
- case '"':
- goto found;
- break;
- default :
- break;
- }
+ queried_offset++;
+ c = tvb_get_guint8(tvb, queried_offset);
+ switch (c) {
+ case ',':
+ case ';':
+ case '"':
+ goto found;
+ break;
+ default :
+ break;
+ }
}
found:
if(queried_offset==line_end_offset){