From 61676155abd26864976ed7c3af97c844a41f935b Mon Sep 17 00:00:00 2001 From: "wtc%netscape.com" Date: Wed, 20 Jun 2001 22:49:50 +0000 Subject: [PATCH] Bugzilla bug #86941: Use the new bug number in the comment. Tag: NSPRPUB_RELEASE_4_1_BRANCH git-svn-id: svn://10.0.0.236/branches/NSPRPUB_RELEASE_4_1_BRANCH@97628 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/nsprpub/pr/src/pthreads/ptio.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mozilla/nsprpub/pr/src/pthreads/ptio.c b/mozilla/nsprpub/pr/src/pthreads/ptio.c index b51c0386ef3..175476cef29 100644 --- a/mozilla/nsprpub/pr/src/pthreads/ptio.c +++ b/mozilla/nsprpub/pr/src/pthreads/ptio.c @@ -1131,12 +1131,13 @@ static PRStatus pt_Close(PRFileDesc *fd) { #ifdef OSF1 /* - * Bug 86764: On Tru64 UNIX V5.0A and V5.1, the close() + * Bug 86941: On Tru64 UNIX V5.0A and V5.1, the close() * system call, when called to close a TCP socket, may * return -1 with errno set to EINVAL but the system call * does close the socket successfully. An application - * may safely ignore the EINVAL error. The defect - * tracking number is QAR 81431. + * may safely ignore the EINVAL error. This bug is fixed + * on Tru64 UNIX V5.1A and later. The defect tracking + * number is QAR 81431. */ if (PR_DESC_SOCKET_TCP != fd->methods->file_type || EINVAL != errno)