Changeset 25138

Show
Ignore:
Timestamp:
04/24/08 18:30:54 (7 months ago)
Author:
bonefish
Message:

Our sockaddr_storage is only 128 bytes long. Hence invocations of bind()
or connect() that passed sizeof(sockaddr_un) would always fail.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • haiku/trunk/headers/posix/sys/un.h

    r24882 r25138  
    1313        uint8_t         sun_len;         
    1414        uint8_t         sun_family; 
    15         char            sun_path[128]; 
     15        char            sun_path[126]; 
    1616}; 
    1717