Index: head/stand/libsa/bootp.h =================================================================== --- head/stand/libsa/bootp.h +++ head/stand/libsa/bootp.h @@ -146,6 +146,4 @@ extern struct bootp *bootp_response; extern size_t bootp_response_size; -int dhcp_try_rfc1048(u_char *cp, u_int len); - #endif /* _BOOTP_H_ */ Index: head/stand/libsa/bootp.c =================================================================== --- head/stand/libsa/bootp.c +++ head/stand/libsa/bootp.c @@ -355,17 +355,6 @@ return (-1); } -int -dhcp_try_rfc1048(u_char *cp, u_int len) -{ - - expected_dhcpmsgtype = DHCPACK; - if (bcmp(vm_rfc1048, cp, sizeof(vm_rfc1048)) == 0) { - return (vend_rfc1048(cp, len)); - } - return (-1); -} - static int vend_rfc1048(u_char *cp, u_int len) {