aboutsummaryrefslogtreecommitdiff
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 13:35:54 -0700
commitb5b3a63ca7e7b0fd0784182ff6be7878328068b7 (patch)
treea1933195369a70ed14b475a3b04a0ceb8e22f30b /src/ext/Util/ca/scasmb.h
parent023aa61a85c4ae6683f4858bfe76d1990ec63816 (diff)
downloadwix-b5b3a63ca7e7b0fd0784182ff6be7878328068b7.tar.gz
wix-b5b3a63ca7e7b0fd0784182ff6be7878328068b7.tar.bz2
wix-b5b3a63ca7e7b0fd0784182ff6be7878328068b7.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};