From 47e12584804b287051552900c94c99a3c84daa92 Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Mon, 21 May 2012 18:15:58 -0500 Subject: [PATCH] afsd: Report fakestat correctly A fakestat value of 1 is for -fakestat-all, and 2 is for -fakestat, not the other way around. Change-Id: Iedfb7b4a5223c809ace5b5f704a671e8523eb53a Reviewed-on: http://gerrit.openafs.org/7445 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- src/afsd/afsd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/afsd/afsd.c b/src/afsd/afsd.c index 5fe8b04ea8..bc105c5a2b 100644 --- a/src/afsd/afsd.c +++ b/src/afsd/afsd.c @@ -2300,7 +2300,7 @@ afsd_run(void) if (enable_fakestat) { if (afsd_verbose) printf("%s: Enabling fakestat support in kernel%s.\n", rn, - (enable_fakestat==2)?" for all mountpoints." + (enable_fakestat==1)?" for all mountpoints." :" for crosscell mountpoints"); code = afsd_call_syscall(AFSOP_SET_FAKESTAT, enable_fakestat); if (code)