Re: [Nagios-devel] NDO big perfdata bug?
Posted: Mon Sep 28, 2009 8:38 pm
Hi,
Hendrik Baecker wrote:
>>
>> Looking around in the code, to find a possible cause, I think I found a
>> small bug in io.c, also
>> ndo_unescape_buffer:
>> if (buffer[x+1]=='\t'){
>> i think should be
>> if (buffer[x+1]=='t'){
>> but I think this is unrelated to the big perfdata problem.
Jep, that's a bug since checking for \ and t should resolve into \t but
the condition never matches right now.
Kind regards,
Michael
This post was automatically imported from historical nagios-devel mailing list archives
Original poster: [email protected]
Hendrik Baecker wrote:
>>
>> Looking around in the code, to find a possible cause, I think I found a
>> small bug in io.c, also
>> ndo_unescape_buffer:
>> if (buffer[x+1]=='\t'){
>> i think should be
>> if (buffer[x+1]=='t'){
>> but I think this is unrelated to the big perfdata problem.
Jep, that's a bug since checking for \ and t should resolve into \t but
the condition never matches right now.
Kind regards,
Michael
This post was automatically imported from historical nagios-devel mailing list archives
Original poster: [email protected]