Merge pull request #3906 from brauner/2021-07-15.fixes.2

grammar fixes
This commit is contained in:
Stéphane Graber 2021-07-15 12:48:14 -04:00 committed by GitHub
commit 93e2548209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1076,7 +1076,7 @@ static int do_start(void *data)
lxc_sync_fini_parent(handler); lxc_sync_fini_parent(handler);
if (lxc_abstract_unix_recv_one_fd(data_sock1, &status_fd, NULL, 0) < 0) { if (lxc_abstract_unix_recv_one_fd(data_sock1, &status_fd, NULL, 0) < 0) {
ERROR("Failed to receive status file descriptor to child process"); ERROR("Failed to receive status file descriptor from parent process");
goto out_warn_father; goto out_warn_father;
} }

View File

@ -121,7 +121,7 @@ bool lxc_sync_wait_child(struct lxc_handler *handler, int sequence)
bool lxc_sync_wake_child(struct lxc_handler *handler, int sequence) bool lxc_sync_wake_child(struct lxc_handler *handler, int sequence)
{ {
TRACE("Child waking parent with sequence %s", start_sync_to_string(sequence)); TRACE("Parent waking child with sequence %s", start_sync_to_string(sequence));
return sync_wake(handler->sync_sock[1], sequence); return sync_wake(handler->sync_sock[1], sequence);
} }