To summarize: please change
else if (stat("/sbin/pump", &stat_buf) == 0)
dhcp_client = PUMP;
else if (stat("/sbin/udhcpc", &stat_buf) == 0)
dhcp_client = UDHCPC;
to:
else if (stat("/sbin/udhcpc", &stat_buf) == 0)
dhcp_client = UDHCPC;
else if (stat("/sbin/pump", &stat_buf) == 0)
dhcp_client = PUMP;
So UDHCPC is used instead of PUMP (pump is going to be removed soon,
but at the moment it's still installed and hence DHCP fails). Please
make this change before beta2.
--
Martin Michlmayr
[EMAIL PROTECTED]
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]