[EMAIL PROTECTED] wrote:
> Hi,
> 
> After successfully executing make and make install, when we tried to run 
> the wireshark (using ./ wireshark)
> 
> We are getting the following error:
> 
> undefined symbol: dissect_eci
> 
> The code is as follows:
> 
> Forward declarations
> static int dissect_eci(tvbuff_t *,int ,proto_tree *);

Are you passing 'dissect_eci' to, say, 'register_dissector()' or 
something similar?  In that case 'dissect_eci' must not be static 
because it needs to be called from outside your .c file.

_______________________________________________
Wireshark-dev mailing list
Wireshark-dev@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-dev

Reply via email to