Use of xlog_err is immediately fatal, switch to using xlog(L_ERROR, ...) instead so that the error handling and cleanup mechanisms can operate properly Signed-off-by: Justin Mitchell <jumitche@xxxxxxxxxx> --- support/nfs/conffile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/nfs/conffile.c b/support/nfs/conffile.c index 51b85f2..c7c3a62 100644 --- a/support/nfs/conffile.c +++ b/support/nfs/conffile.c @@ -495,7 +495,7 @@ conf_readfile(const char *path) { struct stat sb; if (!path) { - xlog_err("conf_readfile: no path given"); + xlog(L_ERROR, "conf_readfile: no path given"); return NULL; } -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html