core: update warning message

"closing all" might suggest that _all_ fds received with the notification message
will be closed. Reword the message to clarify that only the "unused" ones will be
closed.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2016-09-30 13:35:07 +02:00 committed by Martin Pitt
parent c4bee3c40e
commit 5fd2c135f1
1 changed files with 1 additions and 1 deletions

View File

@ -1787,7 +1787,7 @@ static int manager_dispatch_notify_fd(sd_event_source *source, int fd, uint32_t
log_warning("Cannot find unit for notify message of PID "PID_FMT".", ucred->pid);
if (fdset_size(fds) > 0)
log_warning("Got auxiliary fds with notification message, closing all.");
log_warning("Got extra auxiliary fds with notification message, closing them.");
return 0;
}