Added curly braces around nested if's to achieve the if-else association

suggested by the identation.  Thanks to Dorin-Ioan Marinca <dim@csti.fr>
for reporting the problem and Bert Driehuis
<bert_driehuis@nl.compuware.com> for suggesting the fix.


git-svn-id: svn://10.0.0.236/trunk@30222 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wtc%netscape.com
1999-05-04 21:53:10 +00:00
parent 2f90d14705
commit e593d30de0

View File

@@ -164,11 +164,12 @@ static void PRSelectTest(void)
if (debug_mode) printf("return from select is %d\n", rv);
if (PR_FD_ISSET(newSock, &rdset))
if (PR_FD_ISSET(newSock, &rdset)) {
if (debug_mode) printf("I can't believe it- the socket is ready okay!\n");
else
} else {
if (debug_mode) printf("Damn; the select test failed...\n");
else Test_Result (FAIL);
}
strcpy(buf, "XXXXXXXXXX");
bytesRead = PR_Recv(newSock, buf, 10, 0, PR_INTERVAL_NO_TIMEOUT);
@@ -245,12 +246,13 @@ static void NativeSelectTest(void)
if (debug_mode) printf("return from select is %d\n", rv);
if (FD_ISSET(osfd, &rdset))
if (FD_ISSET(osfd, &rdset)) {
if (debug_mode)
printf("I can't believe it- the socket is ready okay!\n");
else
} else {
if (debug_mode) printf("Damn; the select test failed...\n");
else Test_Result (FAIL);
}
strcpy(buf, "XXXXXXXXXX");
bytesRead = PR_Recv(newSock, buf, 10, 0, PR_INTERVAL_NO_TIMEOUT);