Changeset 1189


Ignore:
Timestamp:
Feb 6, 2004, 12:18:50 AM (22 years ago)
Author:
bird
Message:

Corrected wrong function name.

Location:
trunk/src/emx/src/libsocket
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/libsocket/socket.h

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r1188 r1189  
    151151#ifndef TCPV40HDRS
    152152ssize_t TCPCALL __libsocket_send_file(int *, struct sf_parms *, int );
     153int     TCPCALL __libsocket_socketpair(int af, int type, int flags, int *osfd);
    153154#endif
    154155char *  TCPCALL __libsocket_sock_strerror(int);
    155 int     TCPCALL __libsocket_pair(int af, int type, int flags, int *osfd);
    156156#ifdef TCPV40HDRS
    157157int     TCPCALL __libsocket_bsdselect(int, fd_set *, fd_set *, fd_set *, struct timeval *);
  • trunk/src/emx/src/libsocket/socketpair.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r1188 r1189  
    125125    PLIBCSOCKETFH   pFH;
    126126
    127     rc = __libsocket_pair(af, type, flags, osfd);
     127    rc = __libsocket_socketpair(af, type, flags, osfd);
    128128    if (rc < 0)
    129129    {
Note: See TracChangeset for help on using the changeset viewer.