diff options
author | Steve French <stfrench@microsoft.com> | 2021-07-03 23:49:35 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2021-07-05 18:59:53 +0300 |
commit | 90810c25cf028bbd7e8abd9903c37610ef7072c7 (patch) | |
tree | 735aa5a7b864e4033ad56d6991bab23c8b4e6670 /fs/cifs | |
parent | b019e1187ce4bb1f120cbea1a412d8aadb499260 (diff) | |
download | linux-90810c25cf028bbd7e8abd9903c37610ef7072c7.tar.xz |
smb3: fix typo in header file
Although it compiles, the test robot correctly noted:
'cifsacl.h' file not found with <angled> include; use "quotes" instead
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/smb2pdu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/smb2pdu.h b/fs/cifs/smb2pdu.h index a5c48b85549a..ba75e65924ac 100644 --- a/fs/cifs/smb2pdu.h +++ b/fs/cifs/smb2pdu.h @@ -13,7 +13,7 @@ #define _SMB2PDU_H #include <net/sock.h> -#include <cifsacl.h> +#include "cifsacl.h" /* * Note that, due to trying to use names similar to the protocol specifications, |