- Timestamp:
- May 23, 2020, 5:15:32 AM (5 years ago)
- Location:
- branches/guitools-arcamap-2.5/evfsgui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/guitools-arcamap-2.5/evfsgui/evfsgui.vrx
r1066 r1067 1913 1913 */ 1914 1914 CB_client_use_spnego_Click: 1915 advanced.!smbconfchanged = 11916 return1917 1918 /*:VRX CB_client_use_spnego_principal_Click1919 */1920 CB_client_use_spnego_principal_Click:1921 1915 advanced.!smbconfchanged = 1 1922 1916 return … … 2068 2062 ok = VRSet("CB_ENCRYPTION1","Set", 0) 2069 2063 ok = VRSet("CB_KERBEROS51", "Enabled", 0) 2070 ok = VRSet("CB_ENCRYPTION1","Enabled", 0)2064 /* ok = VRSet("CB_ENCRYPTION1","Enabled", 0) */ 2071 2065 end 2072 2066 else do 2073 2067 ok = VRSet("CB_KERBEROS51", "Enabled", 1) 2074 ok = VRSet("CB_ENCRYPTION1","Enabled", 1)2068 /* ok = VRSet("CB_ENCRYPTION1","Enabled", 1) */ 2075 2069 end 2076 2070 return … … 2083 2077 ok = VRSet("CB_ENCRYPTION","Set", 0) 2084 2078 ok = VRSet("CB_KERBEROS5", "Enabled", 0) 2085 ok = VRSet("CB_ENCRYPTION","Enabled", 0)2079 /* ok = VRSet("CB_ENCRYPTION","Enabled", 0) */ 2086 2080 end 2087 2081 else do 2088 2082 ok = VRSet("CB_KERBEROS5", "Enabled", 1) 2089 ok = VRSet("CB_ENCRYPTION","Enabled", 1)2083 /* ok = VRSet("CB_ENCRYPTION","Enabled", 1) */ 2090 2084 end 2091 2085 return … … 3623 3617 ok1 = SysFileDelete(Logfiles||'\log.smbc') 3624 3618 ok2 = SysFileDelete(Logfiles||'\log.ndpsmb') 3625 if ok1 <> 0 | ok2 <> 0then do3619 if ok1 > 2 | ok2 > 2 then do 3626 3620 ok = VRMessage('Main', NLVGetMessage(5)' 'Logfiles||'\log.smbc RC='ok1||'0D0A'x||NLVGetMessage(5)' 'Logfiles||'\log.ndpsmb RC='ok2, NLVGetMessage( 5 ), 'E') 3627 3621 end … … 4727 4721 client_plaintext_auth = VRGet("CB_client_plaintext_auth","Set") 4728 4722 client_use_spnego = VRGet("CB_client_use_spnego","Set") 4723 4724 /* This option is deprecated now (ALT 20200522) 4729 4725 client_use_spnego_principal = VRGet("CB_client_use_spnego_principal","Set") 4726 */ 4730 4727 4731 4728 client_signing = '' … … 4748 4745 call IniSet 'client plaintext auth', YesNo(client_plaintext_auth), handle 4749 4746 call IniSet 'client use spnego', YesNo(client_use_spnego), handle 4747 4748 /* This option is deprecated now (ALT 20200522) 4750 4749 call IniSet 'client use spnego principal', YesNo(client_use_spnego_principal), handle 4750 */ 4751 4751 4752 4752 if client_signing == '' then … … 5776 5776 ok = VRSet("CB_client_use_spnego","Set",client_use_spnego) 5777 5777 5778 /* This option is deprecated now (ALT 20200522) */ 5779 client_use_spnego_principal = 0 5780 /* 5778 5781 client_use_spnego_principal = ZeroOne(IniGet('client use spnego principal', 'global', samba.!shadowsmbconf)) 5779 5782 ok = VRSet("CB_client_use_spnego_principal","Set",client_use_spnego_principal) 5783 */ 5780 5784 5781 5785 client_max_protocol = IniGet('client max protocol', 'global', samba.!shadowsmbconf)
Note:
See TracChangeset
for help on using the changeset viewer.