aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2019-06-13 10:02:03 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2019-06-13 10:02:03 +0200
commit84d38500a7f7cf961ea0cf075c372f0a48b2f1f8 (patch)
treee4e29c9a24087ac70d9c9f552aa1690bc8553297 /networking/udhcp
parent72f12acb6bc81f5150b7b3141f367840a8c0b9c2 (diff)
downloadbusybox-84d38500a7f7cf961ea0cf075c372f0a48b2f1f8.tar.gz
udhcpc: fix comment, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp')
-rw-r--r--networking/udhcp/dhcpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index 80391f606..d1a0eaf02 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -507,7 +507,7 @@ static char **fill_envp(struct dhcp_packet *packet)
putenv(*curr++);
}
if (packet->gateway_nip) {
- /* IP address of DHCP relay agent to use in bootstrap */
+ /* IP address of DHCP relay agent */
*curr = xmalloc(sizeof("giaddr=255.255.255.255"));
sprint_nip(*curr, "giaddr=", (uint8_t *) &packet->gateway_nip);
putenv(*curr++);