From: 2xsec Date: Sun, 1 Jul 2018 13:47:25 +0000 (+0900) Subject: tools: lxc-destroy: remove the trailing . X-Git-Tag: lxc-3.1.0~225^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f0bdb05280145bebe581b4b39b80ac2a4020b28;p=thirdparty%2Flxc.git tools: lxc-destroy: remove the trailing . Signed-off-by: 2xsec --- diff --git a/src/lxc/tools/lxc_destroy.c b/src/lxc/tools/lxc_destroy.c index bc1657b60..f7bd06d87 100644 --- a/src/lxc/tools/lxc_destroy.c +++ b/src/lxc/tools/lxc_destroy.c @@ -158,7 +158,7 @@ static bool do_destroy(struct lxc_container *c) return false; if (file_exists(path)) { - ERROR("Destroying %s failed: %s has clones.", c->name, c->name); + ERROR("Destroying %s failed: %s has clones", c->name, c->name); return false; } @@ -167,7 +167,7 @@ static bool do_destroy(struct lxc_container *c) return false; if (rmdir(path) < 0 && errno != ENOENT) { - ERROR("Destroying %s failed: %s has snapshots.", c->name, c->name); + ERROR("Destroying %s failed: %s has snapshots", c->name, c->name); return false; }