aboutsummaryrefslogtreecommitdiffstats
path: root/tap-iousers.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2009-05-20 15:50:40 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2009-05-20 15:50:40 +0000
commit6ac0479b385a3c7183f44b863614f2ba11e91166 (patch)
tree8d7308b0b3ba90d9f70e1053a3e1ae6bf71a0804 /tap-iousers.c
parent664ccb8b7243749a68824b7061a97afba565d427 (diff)
From Jakub Zawadzki via bug 3421:
e_ip->ip_ttl is currently always set to 0, in attachment fix. I also (in same patch, sorry) submit cleanup to use ep_alloc() instead of static e_ip buffers, I didn't test it, but I hope it's ok. There's note about static buffers in doc/README.tapping, which should also be updated, but I don't feel so good with my English :) From me: Rename e_ip to ws_ip. Update the static buffers note in README.tapping. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28425 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-iousers.c')
-rw-r--r--tap-iousers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tap-iousers.c b/tap-iousers.c
index d347fd39fa..21d5af761a 100644
--- a/tap-iousers.c
+++ b/tap-iousers.c
@@ -253,7 +253,7 @@ static int
iousers_ip_packet(void *arg, packet_info *pinfo, epan_dissect_t *edt _U_, const void *vip)
{
io_users_t *iu=arg;
- const e_ip *iph=vip;
+ const ws_ip *iph=vip;
const address *addr1, *addr2;
io_users_item_t *iui;