summaryrefslogtreecommitdiffstats
path: root/daemons/clvmd/clvmd-cman.c
diff options
context:
space:
mode:
authorPatrick Caulfield <pcaulfie@redhat.com>2005-01-26 09:30:52 +0000
committerPatrick Caulfield <pcaulfie@redhat.com>2005-01-26 09:30:52 +0000
commit9549da2743d2e593fa904dc6ef95d273714ff32d (patch)
tree6a64c4c1f295f97cd1efddc030772bb2801aa9a3 /daemons/clvmd/clvmd-cman.c
parent4e224cf0795bedc45f34b9762e9e29efffb9fa53 (diff)
downloadlvm2-9549da2743d2e593fa904dc6ef95d273714ff32d.tar.gz
lvm2-9549da2743d2e593fa904dc6ef95d273714ff32d.tar.xz
lvm2-9549da2743d2e593fa904dc6ef95d273714ff32d.zip
Don't print CMAN error if initial probe fails - we could be running with GULM.
Diffstat (limited to 'daemons/clvmd/clvmd-cman.c')
-rw-r--r--daemons/clvmd/clvmd-cman.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemons/clvmd/clvmd-cman.c b/daemons/clvmd/clvmd-cman.c
index d441b4eb..f28be229 100644
--- a/daemons/clvmd/clvmd-cman.c
+++ b/daemons/clvmd/clvmd-cman.c
@@ -74,7 +74,7 @@ static int _init_cluster(void)
/* Open the cluster communication socket */
cluster_sock = socket(AF_CLUSTER, SOCK_DGRAM, CLPROTO_CLIENT);
if (cluster_sock == -1) {
- syslog(LOG_ERR, "Can't open cman cluster manager socket: %m");
+ /* Don't print an error here because we could be just probing for CMAN */
return -1;
}