Ignore:
Timestamp:
Nov 15, 2011, 11:46:55 AM (14 years ago)
Author:
Silvan Scherrer
Message:

Samba Server 3.5: fixed a missing return, changed os2_socketpair to os2_pipe

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/lib/os2helper.c

    r658 r664  
    177177*/
    178178
    179 // OS/2 specific socketpair() implementation, as it only works in low mem
    180 int os2_socketpair(int fds[2])
     179// OS/2 specific pipe implementation, we have to use socketpair as select on filehandle is not working
     180// and we have to use local variables to be sure we use low mem, as socketpair doesn't work in high mem
     181int os2_pipe(int fds[2])
    181182{
    182183        int mypair[2];
Note: See TracChangeset for help on using the changeset viewer.