mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-27 09:46:01 +02:00
Corrected wrong mode error in fdopen
This commit is contained in:
parent
72a631eff3
commit
956fa8015c
@ -1273,7 +1273,7 @@ end;
|
|||||||
Function fdOpen(pathname:string;flags:longint):longint;
|
Function fdOpen(pathname:string;flags:longint):longint;
|
||||||
begin
|
begin
|
||||||
pathname:=pathname+#0;
|
pathname:=pathname+#0;
|
||||||
fdOpen:=Sys_Open(@pathname[1],flags,0);
|
fdOpen:=Sys_Open(@pathname[1],flags,438);
|
||||||
LinuxError:=Errno;
|
LinuxError:=Errno;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -3520,7 +3520,10 @@ End.
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.28 1999-01-20 13:29:09 peter
|
Revision 1.29 1999-02-02 21:19:54 michael
|
||||||
|
Corrected wrong mode error in fdopen
|
||||||
|
|
||||||
|
Revision 1.28 1999/01/20 13:29:09 peter
|
||||||
* utimbuf alias added
|
* utimbuf alias added
|
||||||
|
|
||||||
Revision 1.27 1998/12/11 18:08:57 peter
|
Revision 1.27 1998/12/11 18:08:57 peter
|
||||||
|
Loading…
Reference in New Issue
Block a user