diff options
author | Dr. David Alan Gilbert <linux@treblig.org> | 2023-08-17 01:22:31 +0100 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2023-08-30 08:55:52 -0500 |
commit | de54845290cee3f65dcd03b35a2bd7f2f7aed2ac (patch) | |
tree | f37f6f4f395fd1339f2c52881248baf248440c83 /fs/smb/client/Kconfig | |
parent | 089f7f591348ca3325639f541fa4f78d9540dab5 (diff) |
fs/smb/client: Use common code in client
Now we've got the common code, use it for the client as well.
Note there's a change here where we're using the server version of
UniStrcat now which had different types (__le16 vs wchar_t) but
it's not interpreting the value other than checking for 0, however
we do need casts to keep sparse happy.
Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Reviewed-by: Dave Kleikamp <dave.kleikamp@oracle.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/smb/client/Kconfig')
-rw-r--r-- | fs/smb/client/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/smb/client/Kconfig b/fs/smb/client/Kconfig index 4c0d53bf931a..2927bd174a88 100644 --- a/fs/smb/client/Kconfig +++ b/fs/smb/client/Kconfig @@ -3,6 +3,7 @@ config CIFS tristate "SMB3 and CIFS support (advanced network filesystem)" depends on INET select NLS + select NLS_UCS2_UTILS select CRYPTO select CRYPTO_MD5 select CRYPTO_SHA256 |