]> git.proxmox.com Git - mirror_lxc.git/commitdiff
tools: lxc-start: remove the trailing .
author2xsec <dh48.jeong@samsung.com>
Sun, 1 Jul 2018 13:50:51 +0000 (22:50 +0900)
committerChristian Brauner <christian.brauner@ubuntu.com>
Mon, 2 Jul 2018 09:13:41 +0000 (11:13 +0200)
Signed-off-by: 2xsec <dh48.jeong@samsung.com>
src/lxc/tools/lxc_start.c

index 95e28777542d349227a7a318bfd788cd11b6714e..398b56341145e9c23227d9777a525dc82bc7ba45 100644 (file)
@@ -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);