diff --git a/mozilla/nsprpub/pr/src/io/prsocket.c b/mozilla/nsprpub/pr/src/io/prsocket.c index 7c4742a2e83..df52b376007 100644 --- a/mozilla/nsprpub/pr/src/io/prsocket.c +++ b/mozilla/nsprpub/pr/src/io/prsocket.c @@ -379,7 +379,7 @@ PR_IMPLEMENT(PRStatus) PR_GetConnectStatus(const PRPollDesc *pd) PR_SetError(PR_INVALID_ARGUMENT_ERROR, 0); return PR_FAILURE; } - return bottom->methods->connectcontinue(bottom, pd->out_flags); + return SocketConnectContinue(bottom, pd->out_flags); } static PRFileDesc* PR_CALLBACK SocketAccept(PRFileDesc *fd, PRNetAddr *addr, diff --git a/mozilla/nsprpub/pr/src/pthreads/ptio.c b/mozilla/nsprpub/pr/src/pthreads/ptio.c index c1b52a5d6c6..7d0b85b88db 100644 --- a/mozilla/nsprpub/pr/src/pthreads/ptio.c +++ b/mozilla/nsprpub/pr/src/pthreads/ptio.c @@ -1403,7 +1403,7 @@ PR_IMPLEMENT(PRStatus) PR_GetConnectStatus(const PRPollDesc *pd) PR_SetError(PR_INVALID_ARGUMENT_ERROR, 0); return PR_FAILURE; } - return bottom->methods->connectcontinue(bottom, pd->out_flags); + return pt_ConnectContinue(bottom, pd->out_flags); } /* PR_GetConnectStatus */ static PRFileDesc* pt_Accept(