Commit 8b2770a4 authored by Wolffhardt Schwabe's avatar Wolffhardt Schwabe Committed by Eric W. Biederman

fix typo in assignment of fs default overflow gid

The patch remains without practical effect since both macros carry
identical values.  Still, it might become a problem in the future if
(for whatever reason) the default overflow uid and gid differ.  The
DEFAULT_FS_OVERFLOWGID macro was previously unused.
Signed-off-by: default avatarWolffhardt Schwabe <wolffhardt.schwabe@fau.de>
Signed-off-by: default avatarAnatoliy Cherepantsev <anatoliy.cherepantsev@fau.de>
Signed-off-by: default avatarEric W. Biederman <ebiederm@xmission.com>
parent 116ceac9
......@@ -135,7 +135,7 @@ EXPORT_SYMBOL(overflowgid);
*/
int fs_overflowuid = DEFAULT_FS_OVERFLOWUID;
int fs_overflowgid = DEFAULT_FS_OVERFLOWUID;
int fs_overflowgid = DEFAULT_FS_OVERFLOWGID;
EXPORT_SYMBOL(fs_overflowuid);
EXPORT_SYMBOL(fs_overflowgid);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment