diff options
Diffstat (limited to 'fs/nfsd/nfs4recover.c')
| -rw-r--r-- | fs/nfsd/nfs4recover.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/nfs4recover.c b/fs/nfsd/nfs4recover.c index ba6fdd4a045..4914af4a817 100644 --- a/fs/nfsd/nfs4recover.c +++ b/fs/nfsd/nfs4recover.c @@ -73,8 +73,8 @@ nfs4_save_creds(const struct cred **original_creds)  	if (!new)  		return -ENOMEM; -	new->fsuid = 0; -	new->fsgid = 0; +	new->fsuid = GLOBAL_ROOT_UID; +	new->fsgid = GLOBAL_ROOT_GID;  	*original_creds = override_creds(new);  	put_cred(new);  	return 0;  |