Commit fc2dd2e5 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds
Browse files

[PATCH] endianness bug: ntohl() misspelled as >> 24 in fh_verify().

parent eb797227
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -269,7 +269,7 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access)
			"acc=%x, error=%d\n",
			dentry->d_parent->d_name.name,
			dentry->d_name.name,
			access, (error >> 24));
			access, ntohl(error));
	}
out:
	if (exp && !IS_ERR(exp))