diff options
author | Norton T. Allen <allen@huarp.harvard.edu> | 2002-03-25 08:39:25 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-25 17:39:18 +0000 |
commit | 17a8c7ba9970150a64381dc5f49457bd108eabcc (patch) | |
tree | 4c2ae856fffbe2361ffa7b0463e71532012e0b90 /pp_sys.c | |
parent | e5e77ef921861be2417e5b6a9bb8e695a0482101 (diff) | |
download | perl-17a8c7ba9970150a64381dc5f49457bd108eabcc.tar.gz |
Must specify fromlen for recvfrom for QNX6
Message-Id: <200203251839.NAA02055@bottesini.harvard.edu>
p4raw-id: //depot/perl@15493
Diffstat (limited to 'pp_sys.c')
-rw-r--r-- | pp_sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1584,7 +1584,7 @@ PP(pp_sysread) #ifdef HAS_SOCKET if (PL_op->op_type == OP_RECV) { char namebuf[MAXPATHLEN]; -#if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(MPE) +#if (defined(VMS_DO_SOCKETS) && defined(DECCRTL_SOCKETS)) || defined(MPE) || defined(__QNXNTO__) bufsize = sizeof (struct sockaddr_in); #else bufsize = sizeof namebuf; |