]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
Fixed typos
authordlezcano <dlezcano>
Fri, 19 Sep 2008 09:27:37 +0000 (09:27 +0000)
committerdlezcano <dlezcano>
Fri, 19 Sep 2008 09:27:37 +0000 (09:27 +0000)
src/lxc/lxc.h
src/lxc/lxc_create.c
src/lxc/lxc_destroy.c

index 22e6bd066a62cdb87fe0025520841d5c8fea73bb..166ab52b963ff75fe3c33b12d774539f743167f9 100644 (file)
@@ -251,7 +251,7 @@ extern int lxc_cgroup_get_cpuset(const char *name, long *cpumask,
 extern int lxc_cgroup_get_cpu_usage(const char *name, long long *usage);
 
 /*
- * Returns the version number of the library
+ * Returns the version number of the library
  */
 extern const char const *lxc_version(void);
 
index 55c7e9a127602b31075cbb82bcabbaca6816ec3e..383972c508c97c930fb844a12e7496115727d8ea 100644 (file)
@@ -73,7 +73,7 @@ int main(int argc, char *argv[])
        }
 
        if (lxc_create(name, &lxc_conf)) {
-               fprintf(stderr, "failed to create the container %s\n", name);
+               fprintf(stderr, "failed to create the container '%s'\n", name);
                return 1;
        }
 
index 938b9c541c449977fb6116564bf40585ebb37d88..0d3908ab42f5d84e0d79c1ec50c46b9381e42c9b 100644 (file)
@@ -54,7 +54,7 @@ int main(int argc, char *argv[])
                usage(argv[0]);
 
        if (lxc_destroy(name)) {
-               fprintf(stderr, "failed to destroy %s\n", name);
+               fprintf(stderr, "failed to destroy '%s'\n", name);
                return 1;
        }