summaryrefslogtreecommitdiff
path: root/networking/udhcp
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-12-27 04:44:51 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-12-27 04:44:51 +0000
commitd0119d15f97750c49f9955e6c6f952f03d72e795 (patch)
tree193a70e3d5ed19939c8460afb725c0fdf38d065d /networking/udhcp
parent8d42f86b146871ae4c4cafd3801a85f381249a14 (diff)
downloadbusybox-w32-d0119d15f97750c49f9955e6c6f952f03d72e795.tar.gz
busybox-w32-d0119d15f97750c49f9955e6c6f952f03d72e795.tar.bz2
busybox-w32-d0119d15f97750c49f9955e6c6f952f03d72e795.zip
Simple fixes accumulated after 1.3.0.
busybox-1.3.0.ash.patch busybox-1.3.0.bb_strtou.patch busybox-1.3.0.CONFIG_FEATURE_TAR_GNU_EXTENSIONS.patch busybox-1.3.0.dhcprelay.patch busybox-1.3.0.dpkg_ar.patch busybox-1.3.0.find.patch busybox-1.3.0.mount.patch busybox-1.3.0.perror.patch busybox-1.3.0.sed.patch busybox-1.3.0.shadow.patch busybox-1.3.0.xregcomp.patch
Diffstat (limited to 'networking/udhcp')
-rw-r--r--networking/udhcp/dhcprelay.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/udhcp/dhcprelay.c b/networking/udhcp/dhcprelay.c
index e3a816886..4e84b8dd4 100644
--- a/networking/udhcp/dhcprelay.c
+++ b/networking/udhcp/dhcprelay.c
@@ -259,7 +259,8 @@ static void dhcprelay_loop(int *fds, int num_sockets, int max_socket, char **cli
259{ 259{
260 struct dhcpMessage dhcp_msg; 260 struct dhcpMessage dhcp_msg;
261 fd_set rfds; 261 fd_set rfds;
262 size_t packlen, addr_size; 262 size_t packlen;
263 socklen_t addr_size;
263 struct sockaddr_in client_addr; 264 struct sockaddr_in client_addr;
264 struct timeval tv; 265 struct timeval tv;
265 int i; 266 int i;