Re: [Wireshark-dev] in linux works......in windows not!??

2010-07-16 Thread Manthos S.
Thank you for your answer! 1. yes , it is a permanently allocated string. 2. actually i used col_append_str() for appending something. At the beginning i used col_add_str(), as i getted adviced from the developer guide. I wrote "col_set_str()" by mistake in my first email. Apologise! Thanks for th

Re: [Wireshark-dev] in linux works......in windows not!??

2010-07-15 Thread Bill Meier
Manthos S. wrote: > Dear experts, > > i wanted to append something to the Info-Column of my dissector. I did it > with: > > if(check_col(pinfo->cinfo, COL_INFO)) > col_set_str(pinfo->cinfo, COL_INFO, " something"); > > ..and in linux worked perfect! I checked it out to my repos

[Wireshark-dev] in linux works......in windows not!??

2010-07-15 Thread Manthos S.
Dear experts, i wanted to append something to the Info-Column of my dissector. I did it with: if(check_col(pinfo->cinfo, COL_INFO)) col_set_str(pinfo->cinfo, COL_INFO, " something"); ...and in linux worked perfect! I checked it out to my repository, booted with windows, made sv