diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-22 14:29:13 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-22 14:29:13 +0100 |
commit | dde8bdcc5bd6f25157ca5364b2991c837f1ef364 (patch) | |
tree | d1947e02af92db440b8f8b9e16659ff8568d7e62 /networking/udhcp/dhcprelay.c | |
parent | 8d1144565fd01576b72eac65ce4686405f98829e (diff) |
udhcp: merge options.h into common.h, script.c into dhcpc.c
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/dhcprelay.c')
-rw-r--r-- | networking/udhcp/dhcprelay.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/networking/udhcp/dhcprelay.c b/networking/udhcp/dhcprelay.c index a7e715ff9..9f6ac699a 100644 --- a/networking/udhcp/dhcprelay.c +++ b/networking/udhcp/dhcprelay.c @@ -11,7 +11,6 @@ */ #include "common.h" -#include "options.h" #define SERVER_PORT 67 #define SELECT_TIMEOUT 5 /* select timeout in sec. */ @@ -105,7 +104,7 @@ static int get_dhcp_packet_type(struct dhcp_packet *p) if (p->op != BOOTREQUEST && p->op != BOOTREPLY) return -1; /* get message type option */ - op = get_option(p, DHCP_MESSAGE_TYPE); + op = udhcp_get_option(p, DHCP_MESSAGE_TYPE); if (op != NULL) return op[0]; return -1; |