Fix bug #66
git-svn-id: https://svn.code.sf.net/p/synalist/code/trunk@266 7c85be65-684b-0410-a082-b2ed4fbef004
This commit is contained in:
parent
4edfd621d3
commit
c19182b10d
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user