Today I got a "Duplicates not found" error when I enumerated the existing properties for a specific protocol; the issue was with the property named 'KRB'.
I checked it back it pointed me to the two properties above, which are described in ZPropertiesEditor.pas as follows:
Code: Select all
ZProp_Kerberos : TZProperty = (
Name: ConnProps_Kerberos;
Purpose: cASA_KerberosPurpose;
ValueType: pvtString; LevelTypes: [pltConnection];
Values: ''; Default: 'NO'; Alias: ConnProps_KRB;
Providers: (Count: 1; Items: @cASAProvider);
Protocols: (Count: 2; Items: @cASAProtocols);
);
ZProp_KRB : TZProperty = (
Name: ConnProps_KRB;
Purpose: cASA_KerberosPurpose;
ValueType: pvtString; LevelTypes: [pltConnection];
Values: ''; Default: 'NO'; Alias: ConnProps_Kerberos;
Providers: (Count: 1; Items: @cASAProvider);
Protocols: (Count: 2; Items: @cASAProtocols);
);
Code: Select all
ZProp_Kerberos : TZProperty = (
Name: ConnProps_Kerberos;
Purpose: cASA_KerberosPurpose;
ValueType: pvtString; LevelTypes: [pltConnection];
Values: ''; Default: 'NO'; Alias: ConnProps_Kerberos;
Providers: (Count: 1; Items: @cASAProvider);
Protocols: (Count: 2; Items: @cASAProtocols);
);
ZProp_KRB : TZProperty = (
Name: ConnProps_KRB;
Purpose: cASA_KerberosPurpose;
ValueType: pvtString; LevelTypes: [pltConnection];
Values: ''; Default: 'NO'; Alias: ConnProps_KRB;
Providers: (Count: 1; Items: @cASAProvider);
Protocols: (Count: 2; Items: @cASAProtocols);
);
I did not create a pull request as the issue is really quick to fix and I'm not sure that I am right in this.