Commit 364c5d97 by Christian Brauner Committed by GitHub

Merge pull request #1817 from stgraber/master

Fix typo
parents aedfcb8a eee1a9d7
...@@ -379,7 +379,7 @@ struct lxc_storage *storage_copy(struct lxc_container *c, const char *cname, ...@@ -379,7 +379,7 @@ struct lxc_storage *storage_copy(struct lxc_container *c, const char *cname,
if (ret < 0 && errno == ENOENT) { if (ret < 0 && errno == ENOENT) {
ret = mkdir_p(orig->dest, 0755); ret = mkdir_p(orig->dest, 0755);
if (ret < 0) if (ret < 0)
WARN("Failed to create directoy \"%s\"", orig->dest); WARN("Failed to create directory \"%s\"", orig->dest);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment