From: 2xsec Date: Sun, 1 Jul 2018 13:50:51 +0000 (+0900) Subject: tools: lxc-start: remove the trailing . X-Git-Tag: lxc-3.1.0~225^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28b7b0f01a94bab99a9ff9edbfc0f685747b8853;p=thirdparty%2Flxc.git tools: lxc-start: remove the trailing . Signed-off-by: 2xsec --- diff --git a/src/lxc/tools/lxc_start.c b/src/lxc/tools/lxc_start.c index 95e287775..398b56341 100644 --- a/src/lxc/tools/lxc_start.c +++ b/src/lxc/tools/lxc_start.c @@ -275,7 +275,7 @@ int main(int argc, char *argv[]) } if (c->is_running(c)) { - ERROR("Container is already running."); + ERROR("Container is already running"); err = EXIT_SUCCESS; goto out; } @@ -327,13 +327,13 @@ int main(int argc, char *argv[]) else err = c->start(c, 0, args) ? EXIT_SUCCESS : EXIT_FAILURE; if (err) { - ERROR("The container failed to start."); + ERROR("The container failed to start"); if (my_args.daemonize) - ERROR("To get more details, run the container in foreground mode."); + ERROR("To get more details, run the container in foreground mode"); ERROR("Additional information can be obtained by setting the " - "--logfile and --logpriority options."); + "--logfile and --logpriority options"); err = c->error_num; lxc_container_put(c);