Never mind... I had a sed script in my setup shell script that fixed up the
places where
traceEvent(TRACE_ERROR, "Buffer overflow!");
Had not yet been converted to the BufferOverflow() macro.
When Luca changed BufferOverflow() -> BufferTooShort(), my sed script was
still going the other way...
Luca: FWIW, there are still a LOT of traceEvent(TRACE_ERROR, "Buffer
overflow!"); that should be converted to BufferTooShort() macros...
sed script:
for i in `ls *.c`; do
echo " Processing" $i "..." >>patchlog
mv $i $i.pre
sed -e 's/traceEvent(TRACE_ERROR, \"Buffer
overflow!\");/BufferTooShort();/g' $i.pre >$i
rm $i.pre
done
-----Burton
_______________________________________________
Ntop-dev mailing list
[EMAIL PROTECTED]
http://listmanager.unipi.it/mailman/listinfo/ntop-dev