calin radoni's humble web presence

homedocstoolboxabout

Installing Honeyd 1.0 and Arpd 0.2 under Fedora Core 4 (with gcc 4.0.0)

Technical detail 2

The arpd 0.2 will not compile with gcc 4.0.0 because of some sentences contained in arpd.c. Here is an example:

syslog(LOG_DEBUG, __FUNCTION__ ": who-has %s tell %s", addr_ntoa(tpa), addr_ntoa(spa));
						
I have change it like this:
syslog(LOG_DEBUG, "%s: who-has %s tell %s", __FUNCTION__, addr_ntoa(tpa), addr_ntoa(spa));
						
In the entire arpd.c file were five constructs similar to the previous presented one.

Go back to the article.


Copyright © 2005 - 2009 Calin Radoni Hosted on http://www.oocities.org/calinradoni Last page modification is 12 July 2005