summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Layton <jlayton@redhat.com>2012-05-09 12:36:02 -0400
committerSteve Dickson <steved@redhat.com>2012-05-09 13:25:15 -0400
commitb6a0ab1dfe85b84ab30a1b656a6bc88b9e025434 (patch)
tree42fedd94ea6c282bd80f827bff2ea670345f5dc7
parentbf6a4febaa78bf188896b7b5b02c46562dd08b70 (diff)
downloadnfs-utils-b6a0ab1dfe85b84ab30a1b656a6bc88b9e025434.tar.gz
nfs-utils-b6a0ab1dfe85b84ab30a1b656a6bc88b9e025434.tar.xz
nfs-utils-b6a0ab1dfe85b84ab30a1b656a6bc88b9e025434.zip
nfsdcld: demote pipe opening error to D_GENERAL
It's actually expected that this will fail initially when we start the daemon. Until knfsd has been started, the pipe doesn't exist, and we generally want to start nfsdcld before starting knfsd. Avoid the scary error message by demoting this message to D_GENERAL. Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--utils/nfsdcld/nfsdcld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/nfsdcld/nfsdcld.c b/utils/nfsdcld/nfsdcld.c
index 2f0b004..c9f0fb9 100644
--- a/utils/nfsdcld/nfsdcld.c
+++ b/utils/nfsdcld/nfsdcld.c
@@ -89,7 +89,7 @@ cld_pipe_open(struct cld_client *clnt)
xlog(D_GENERAL, "%s: opening upcall pipe %s", __func__, pipepath);
fd = open(pipepath, O_RDWR, 0);
if (fd < 0) {
- xlog(L_ERROR, "%s: open of %s failed: %m", __func__, pipepath);
+ xlog(D_GENERAL, "%s: open of %s failed: %m", __func__, pipepath);
return -errno;
}