diff options
author | Steve French <stfrench@microsoft.com> | 2018-11-03 23:02:44 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2018-12-06 11:20:14 +0300 |
commit | 6e785302dad32228819d8066e5376acd15d0e6ba (patch) | |
tree | 0ff625b2aa8c7d459642cc1e7e221f47e5731525 /fs/cifs | |
parent | cf76c364a1e1e5224af80edf70a1e3023e1fcf8c (diff) | |
download | linux-6e785302dad32228819d8066e5376acd15d0e6ba.tar.xz |
cifs: In Kconfig CONFIG_CIFS_POSIX needs depends on legacy (insecure cifs)
Missing a dependency. Shouldn't show cifs posix extensions
in Kconfig if CONFIG_CIFS_ALLOW_INSECURE_DIALECTS (ie SMB1
protocol) is disabled.
Signed-off-by: Steve French <stfrench@microsoft.com>
Reviewed-by: Pavel Shilovsky <pshilov@microsoft.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/Kconfig b/fs/cifs/Kconfig index abcd78e332fe..85dadb93c992 100644 --- a/fs/cifs/Kconfig +++ b/fs/cifs/Kconfig @@ -133,7 +133,7 @@ config CIFS_XATTR config CIFS_POSIX bool "CIFS POSIX Extensions" - depends on CIFS_XATTR + depends on CIFS && CIFS_ALLOW_INSECURE_LEGACY && CIFS_XATTR help Enabling this option will cause the cifs client to attempt to negotiate a newer dialect with servers, such as Samba 3.0.5 |