udhcpc: fix comment, no code changes
authorDenys Vlasenko <vda.linux@googlemail.com>
Thu, 13 Jun 2019 08:02:03 +0000 (10:02 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Thu, 13 Jun 2019 08:02:03 +0000 (10:02 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
networking/udhcp/dhcpc.c

index 80391f6063abf68f17fd6b63b71699ff1b3152dd..d1a0eaf02a4c49f8a59956fe040edaa59a5a0046 100644 (file)
@@ -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++);