https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b3c1f652ecab59d1d55f9162ab0602ae0017fd2a
commit b3c1f652ecab59d1d55f9162ab0602ae0017fd2a Author: Whindmar Saksit <[email protected]> AuthorDate: Sat Nov 4 15:40:22 2023 +0100 Commit: GitHub <[email protected]> CommitDate: Sat Nov 4 17:40:22 2023 +0300 [NETSHELL] Register folder attributes as SFGAO_FOLDER, not SFGAO_CANDELETE (#5880) On Windows the Network connections folder uses a binary value and someone forgot about Little Endian when converting it to a DWORD. Addendum to 7eb3fcf1d (r66485). CORE-9276 This issue has not been very visible because of bugs in CRegFolderEnum. --- dll/shellext/netshell/res/netshell.rgs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dll/shellext/netshell/res/netshell.rgs b/dll/shellext/netshell/res/netshell.rgs index c5b57b659ae..103005a3e6a 100644 --- a/dll/shellext/netshell/res/netshell.rgs +++ b/dll/shellext/netshell/res/netshell.rgs @@ -11,7 +11,7 @@ HKCR DefaultIcon = s '%MODULE%' ShellFolder { - val Attributes = d '0x00000020' + val Attributes = d '0x20000000' } val LocalizedString = s '@%MODULE%,-10000' }
