aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpd.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-03-30 18:44:52 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2016-03-30 18:44:52 +0200
commit16efe191289ea7507410c343342486b6ea918024 (patch)
treed3996b19acb741ae0fb31010eddb148b08ad36d0 /networking/udhcp/dhcpd.c
parent8f2e99c813dcac25faf58162ed18848a02888ff6 (diff)
downloadbusybox-16efe191289ea7507410c343342486b6ea918024.tar.gz
dhcpd: string reuse
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/dhcpd.c')
-rw-r--r--networking/udhcp/dhcpd.c2
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);
}