From 83b9b8f65c62ea2bd366288ab1aa90d139fe7aa7 Mon Sep 17 00:00:00 2001 From: Dagobert Michelsen Date: Sun, 23 Feb 2020 21:38:31 +0100 Subject: [PATCH] Fix condition on libkstat existence --- src/nfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nfs.c b/src/nfs.c index ba9bc068c..3ddab6ab4 100644 --- a/src/nfs.c +++ b/src/nfs.c @@ -96,7 +96,7 @@ Number Procedures Procedures 21 commit */ -#if KERNEL_LINUX | HAVE_KSTAT +#if KERNEL_LINUX || HAVE_LIBKSTAT static const char *nfs2_procedures_names[] = { "null", "getattr", "setattr", "root", "lookup", "readlink", "read", "wrcache", "write", "create", "remove", "rename", -- 2.47.2