summaryrefslogtreecommitdiff
path: root/src/ext/Util/ca/scasmb.h
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2023-07-29 20:57:14 -0400
committerRob Mensching <rob@firegiant.com>2023-08-07 12:09:28 -0700
commit6d5c4be037087420dff69d8f3ed6c7b528e4125e (patch)
treefe2a30b2ba32cbebfc2c9c2c8e0f267de83542ea /src/ext/Util/ca/scasmb.h
parentd8832dbc91cd1d93ebb13c346aa0920bf44b4466 (diff)
downloadwix-6d5c4be037087420dff69d8f3ed6c7b528e4125e.tar.gz
wix-6d5c4be037087420dff69d8f3ed6c7b528e4125e.tar.bz2
wix-6d5c4be037087420dff69d8f3ed6c7b528e4125e.zip
Remove legacy permissions support.
In the long ago, a share could have one user/permissions pair. That's really limited, of course, so support for _n_ user/permissions pairs was added. In the move to WiX v4, support for that single, legacy user was removed from the extension side but not the custom action side. Remove that support. Fixes https://github.com/wixtoolset/issues/issues/7632.
Diffstat (limited to 'src/ext/Util/ca/scasmb.h')
-rw-r--r--src/ext/Util/ca/scasmb.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ext/Util/ca/scasmb.h b/src/ext/Util/ca/scasmb.h
index f2a4b53c..7169cf2b 100644
--- a/src/ext/Util/ca/scasmb.h
+++ b/src/ext/Util/ca/scasmb.h
@@ -23,14 +23,11 @@ struct SCA_SMB // hungarian ss
23 WCHAR wzDirectory[MAX_PATH + 1]; 23 WCHAR wzDirectory[MAX_PATH + 1];
24 24
25 int nUserPermissionCount; 25 int nUserPermissionCount;
26 int nPermissions;
27 SCA_SMB_EX_USER_PERMS* pExUserPerms; 26 SCA_SMB_EX_USER_PERMS* pExUserPerms;
28 27
29 INSTALLSTATE isInstalled, isAction; 28 INSTALLSTATE isInstalled, isAction;
30 29
31 BOOL fUseIntegratedAuth; 30 BOOL fUseIntegratedAuth;
32 BOOL fLegacyUserProvided;
33 struct SCA_USER scau;
34 31
35 struct SCA_SMB* pssNext; 32 struct SCA_SMB* pssNext;
36}; 33};