summaryrefslogtreecommitdiff
path: root/epan/req_resp_hdrs.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2009-10-03 09:15:40 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2009-10-03 09:15:40 +0000
commit3138f91c9a2a9f8052e9616601aefd5fc74c521a (patch)
tree52756fb9d447e140d7f8fd2a1748ba32dd8231c9 /epan/req_resp_hdrs.c
parent939fe90d9c7c0b51ed7fe7235ac2b977f06e4450 (diff)
downloadwireshark-3138f91c9a2a9f8052e9616601aefd5fc74c521a.tar.gz
Fix a typo
svn path=/trunk/; revision=30267
Diffstat (limited to 'epan/req_resp_hdrs.c')
-rw-r--r--epan/req_resp_hdrs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/req_resp_hdrs.c b/epan/req_resp_hdrs.c
index 7c6588e2fe..21b4e387b8 100644
--- a/epan/req_resp_hdrs.c
+++ b/epan/req_resp_hdrs.c
@@ -305,7 +305,7 @@ req_resp_hdrs_do_reassembly(tvbuff_t *tvb, const int offset, packet_info *pinfo,
*/
return TRUE;
}
- if (chunk_size > 2<<31) {
+ if (chunk_size > (guint)1<<31) {
/* Chunk size is unreasonable. */
/* XXX What /is/ reasonable? */
return TRUE;