summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWan-Teh Chang <wtc@google.com>2014-01-03 10:00:06 -0800
committerWan-Teh Chang <wtc@google.com>2014-01-03 10:00:06 -0800
commitbde7be515b12b335a0629b1f67f853088366b7a8 (patch)
treedd4fd38502307676322a9b168fe2a186ffe345fc
parent300847c466d1c1d94ef1c251c46dc3fe2e413d20 (diff)
downloadnss-hg-bde7be515b12b335a0629b1f67f853088366b7a8.tar.gz
Bug 956033: Remove an incorrect and an unnecessary assertion in
ssl3_AuthCertificateComplete. r=briansmith.
-rw-r--r--lib/ssl/ssl3con.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/ssl/ssl3con.c b/lib/ssl/ssl3con.c
index 732e4a010..a7144ea9a 100644
--- a/lib/ssl/ssl3con.c
+++ b/lib/ssl/ssl3con.c
@@ -10049,14 +10049,11 @@ ssl3_AuthCertificateComplete(sslSocket *ss, PRErrorCode error)
SSL_TRC(3, ("%d: SSL3[%p]: certificate authentication won the race with"
" peer's finished message", SSL_GETPID(), ss->fd));
- PORT_Assert(!ss->firstHsDone);
- PORT_Assert(!ss->sec.isServer);
PORT_Assert(!ss->ssl3.hs.isResuming);
PORT_Assert(ss->ssl3.hs.ws != idle_handshake);
if (ss->opt.enableFalseStart &&
!ss->firstHsDone &&
- !ss->sec.isServer &&
!ss->ssl3.hs.isResuming &&
ssl3_WaitingForStartOfServerSecondRound(ss)) {
/* ssl3_SendClientSecondRound deferred the false start check because