git-svn-id: https://svn.code.sf.net/p/synalist/code/trunk@266 7c85be65-684b-0410-a082-b2ed4fbef004
This commit is contained in:
geby 2022-07-28 15:48:46 +00:00
parent 4edfd621d3
commit c19182b10d
3 changed files with 3 additions and 3 deletions

View File

@ -1148,7 +1148,7 @@ end;
function d2iX509bio(b: PBIO; x: PX509): PX509; {pf}
begin
if InitSSLInterface and Assigned(_d2iX509bio) then
Result := _d2iX509bio(x,b)
Result := _d2iX509bio(b, x)
else
Result := nil;
end;

View File

@ -1129,7 +1129,7 @@ end;
function d2iX509bio(b: PBIO; x: PX509): PX509; {pf}
begin
if InitSSLInterface and Assigned(_d2iX509bio) then
Result := _d2iX509bio(x,b)
Result := _d2iX509bio(b, x)
else
Result := nil;
end;

View File

@ -1783,7 +1783,7 @@ end;
function d2iX509bio(b: PBIO; x: PX509): PX509; {pf}
begin
if InitSSLInterface and Assigned(_d2iX509bio) then
Result := _d2iX509bio(x,b)
Result := _d2iX509bio(b, x)
else
Result := nil;
end;