mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 15:29:25 +02:00
* fixed TUnixSockAddr (array from 0..108 -> 0..107) (merged)
This commit is contained in:
parent
8bbd570d12
commit
0ee8ff51b5
@ -119,7 +119,7 @@ const
|
||||
type
|
||||
TUnixSockAddr = packed Record
|
||||
family:word; { was byte, fixed }
|
||||
path:array[0..108] of char;
|
||||
path:array[0..107] of char;
|
||||
end;
|
||||
|
||||
{$i socketsh.inc}
|
||||
@ -152,7 +152,10 @@ end.
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.4 2001-06-02 00:31:31 peter
|
||||
Revision 1.5 2001-11-05 09:06:40 jonas
|
||||
* fixed TUnixSockAddr (array from 0..108 -> 0..107) (merged)
|
||||
|
||||
Revision 1.4 2001/06/02 00:31:31 peter
|
||||
* merge unix updates from the 1.0 branch, mostly related to the
|
||||
solaris target
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user