The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxc/pull/2381
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === Signed-off-by: Stéphane Graber <[email protected]>
From 46210729c591eaa7a5c1f1395b63f15c6d2e7e67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= <[email protected]> Date: Tue, 5 Jun 2018 17:13:57 -0400 Subject: [PATCH] Fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber <[email protected]> --- src/lxc/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/utils.c b/src/lxc/utils.c index 04f179821..cd5edd6ab 100644 --- a/src/lxc/utils.c +++ b/src/lxc/utils.c @@ -2239,7 +2239,7 @@ int run_command(char *buf, size_t buf_size, int (*child_fn)(void *), void *args) int ret, fret, pipefd[2]; ssize_t bytes; - /* Make sure our callers do not receive unitialized memory. */ + /* Make sure our callers do not receive uninitialized memory. */ if (buf_size > 0 && buf) buf[0] = '\0';
_______________________________________________ lxc-devel mailing list [email protected] http://lists.linuxcontainers.org/listinfo/lxc-devel
