calin radoni's humble web presence |
home![]() ![]() ![]() |
Installing Honeyd 1.0 and Arpd 0.2 under Fedora Core 4 (with gcc 4.0.0)
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.