From: Denys Vlasenko Date: Thu, 13 Jun 2019 08:02:03 +0000 (+0200) Subject: udhcpc: fix comment, no code changes X-Git-Tag: 1_32_0~189 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=84d38500a7f7cf961ea0cf075c372f0a48b2f1f8;p=oweals%2Fbusybox.git udhcpc: fix comment, no code changes Signed-off-by: Denys Vlasenko --- 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++);