diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-03-30 18:44:52 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-03-30 18:44:52 +0200 |
commit | 16efe191289ea7507410c343342486b6ea918024 (patch) | |
tree | d3996b19acb741ae0fb31010eddb148b08ad36d0 | |
parent | 8f2e99c813dcac25faf58162ed18848a02888ff6 (diff) | |
download | busybox-16efe191289ea7507410c343342486b6ea918024.tar.gz |
dhcpd: string reuse
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/udhcp/dhcpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpd.c b/networking/udhcp/dhcpd.c index 79677ee93..2671ea3e2 100644 --- a/networking/udhcp/dhcpd.c +++ b/networking/udhcp/dhcpd.c @@ -226,7 +226,7 @@ static NOINLINE void send_NAK(struct dhcp_packet *oldpacket) init_packet(&packet, oldpacket, DHCPNAK); - log1("sending NAK"); + log1("sending %s", "NAK"); send_packet(&packet, /*force_bcast:*/ 1); } |