]> git.decadent.org.uk Git - nfs-utils.git/blobdiff - utils/nfsdcld/nfsdcld.c
nfsdcld: demote pipe opening error to D_GENERAL
[nfs-utils.git] / utils / nfsdcld / nfsdcld.c
index 6a1eba8f7d3214ecfbd78f1dc7f6ae34bf644e58..c9f0fb98e02183ddc39d7d119715e1197266912b 100644 (file)
@@ -38,6 +38,7 @@
 #include "xlog.h"
 #include "nfslib.h"
 #include "cld.h"
+#include "sqlite.h"
 
 #ifndef PIPEFS_DIR
 #define PIPEFS_DIR NFS_STATEDIR "/rpc_pipefs"
@@ -88,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;
        }