diff options
-rw-r--r-- | usr.sbin/bootpd/hwaddr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bootpd/hwaddr.c b/usr.sbin/bootpd/hwaddr.c index b1022ec8daf..ecd27eb26ea 100644 --- a/usr.sbin/bootpd/hwaddr.c +++ b/usr.sbin/bootpd/hwaddr.c @@ -137,7 +137,7 @@ setarp(s, ia, ha, len) snprintf(buf, sizeof(buf), "arp -d %s; arp -s %s %s temp", a, a, haddrtoa(ha, len)); if (debug > 2) - report(LOG_INFO, buf); + report(LOG_INFO, "%s", buf); status = system(buf); if (status) report(LOG_ERR, "arp failed, exit code=0x%x", status); |