]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
remove a few noisy, unhelpful INFOs in detect_shared_rootfs()
authorSerge Hallyn <serge.hallyn@ubuntu.com>
Fri, 1 Nov 2013 14:11:18 +0000 (09:11 -0500)
committerSerge Hallyn <serge.hallyn@ubuntu.com>
Fri, 1 Nov 2013 14:11:18 +0000 (09:11 -0500)
They are a nuisance.

Signed-off-by: Serge Hallyn <serge.hallyn@ubuntu.com>
src/lxc/conf.c

index 50dc4262e7ed18e62a066bd71d9a642e3cbf688f..2a47e77b3b113089b60f73a277ac588a6bda6ebb 100644 (file)
@@ -1268,7 +1268,6 @@ int detect_shared_rootfs(void)
        if (!f)
                return 0;
        while ((p = fgets(buf, LINELEN, f))) {
-               INFO("looking at .%s.", p);
                for (p = buf, i=0; p && i < 4; i++)
                        p = index(p+1, ' ');
                if (!p)
@@ -1277,7 +1276,6 @@ int detect_shared_rootfs(void)
                if (!p2)
                        continue;
                *p2 = '\0';
-               INFO("now p is .%s.", p);
                if (strcmp(p+1, "/") == 0) {
                        // this is '/'.  is it shared?
                        p = index(p2+1, ' ');