From: Wolffhardt Schwabe Date: Thu, 14 Dec 2017 18:13:57 +0000 (+0100) Subject: fix typo in assignment of fs default overflow gid X-Git-Tag: v4.16-rc1~158^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8b2770a4e1c7a837e1889d4f00026e999da5faa0;p=thirdparty%2Fkernel%2Flinux.git 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: Wolffhardt Schwabe Signed-off-by: Anatoliy Cherepantsev Signed-off-by: Eric W. Biederman --- diff --git a/kernel/sys.c b/kernel/sys.c index 83ffd7dccf23e..f2289de20e19a 100644 --- a/kernel/sys.c +++ b/kernel/sys.c @@ -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);