mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-23 14:36:08 +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;
|
||||
begin
|
||||
pathname:=pathname+#0;
|
||||
fdOpen:=Sys_Open(@pathname[1],flags,0);
|
||||
fdOpen:=Sys_Open(@pathname[1],flags,438);
|
||||
LinuxError:=Errno;
|
||||
end;
|
||||
|
||||
@ -3520,7 +3520,10 @@ End.
|
||||
|
||||
{
|
||||
$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
|
||||
|
||||
Revision 1.27 1998/12/11 18:08:57 peter
|
||||
|
Loading…
Reference in New Issue
Block a user