1
0

synamisc.pas - fix bug

git-svn-id: https://svn.code.sf.net/p/synalist/code/trunk@228 7c85be65-684b-0410-a082-b2ed4fbef004
This commit is contained in:
geby 2021-06-18 13:02:02 +00:00
parent 56710f0ab4
commit b0bd027e70

@ -140,7 +140,7 @@ begin
for n := 0 to 5 do for n := 0 to 5 do
begin begin
b := StrToIntDef('$' + MAC[n * 2 + 1] + MAC[n * 2 + 2], 0); b := StrToIntDef('$' + MAC[n * 2 + 1] + MAC[n * 2 + 2], 0);
HexMac := HexMac + char(b); HexMac := HexMac + AnsiChar(b);
end; end;
if IP = '' then if IP = '' then
IP := cBroadcast; IP := cBroadcast;