diff --git a/libexec/rbootd/rbootd.c b/libexec/rbootd/rbootd.c index 2f7c38435364..70bd7912a7f8 100644 --- a/libexec/rbootd/rbootd.c +++ b/libexec/rbootd/rbootd.c @@ -154,7 +154,8 @@ main(argc, argv) if ((IntfName = BpfGetIntfName(&errmsg)) == NULL) { syslog(LOG_NOTICE, "restarted (??)"); - syslog(LOG_ERR, errmsg); + /* BpfGetIntfName() returns safe names, using %m */ + syslog(LOG_ERR, "%s", errmsg); Exit(0); } }