Bug 1069387 - Fix "Transaction" typos in netwerk/protocol/http. r=mcmanus

This commit is contained in:
Tom Tromey 2014-09-18 08:13:00 -04:00
parent 8b8e292385
commit 4e26acc2f9
6 changed files with 7 additions and 7 deletions

View File

@ -2636,7 +2636,7 @@ Http2Session::CloseTransaction(nsAHttpTransaction *aTransaction,
this, aTransaction, aResult));
return;
}
LOG3(("Http2Session::CloseTranscation probably a cancel. "
LOG3(("Http2Session::CloseTransaction probably a cancel. "
"this=%p, trans=%p, result=%x, streamID=0x%X stream=%p",
this, aTransaction, aResult, stream->StreamID(), stream));
CleanupStream(stream, aResult, CANCEL_ERROR);

View File

@ -135,7 +135,7 @@ NullHttpTransaction::RequestHead()
// CONNECT tunnels may also want Proxy-Authorization but that is a lot
// harder to determine, so for now we will let those connections fail in
// the NullHttpTransaction and let them be retried from the pending queue
// with a bound transcation
// with a bound transaction
}
return mRequestHead;

View File

@ -2265,7 +2265,7 @@ SpdySession3::CloseTransaction(nsAHttpTransaction *aTransaction,
this, aTransaction, aResult));
return;
}
LOG3(("SpdySession3::CloseTranscation probably a cancel. "
LOG3(("SpdySession3::CloseTransaction probably a cancel. "
"this=%p, trans=%p, result=%x, streamID=0x%X stream=%p",
this, aTransaction, aResult, stream->StreamID(), stream));
CleanupStream(stream, aResult, RST_CANCEL);

View File

@ -2398,7 +2398,7 @@ SpdySession31::CloseTransaction(nsAHttpTransaction *aTransaction,
this, aTransaction, aResult));
return;
}
LOG3(("SpdySession31::CloseTranscation probably a cancel. "
LOG3(("SpdySession31::CloseTransaction probably a cancel. "
"this=%p, trans=%p, result=%x, streamID=0x%X stream=%p",
this, aTransaction, aResult, stream->StreamID(), stream));
CleanupStream(stream, aResult, RST_CANCEL);

View File

@ -179,10 +179,10 @@ nsHttpConnection::StartSpdy(uint8_t spdyVersion)
if (rv == NS_ERROR_ALREADY_OPENED) {
// Has the interface for TakeSubTransactions() changed?
LOG(("TakeSubTranscations somehow called after "
LOG(("TakeSubTransactions somehow called after "
"nsAHttpTransaction began processing\n"));
MOZ_ASSERT(false,
"TakeSubTranscations somehow called after "
"TakeSubTransactions somehow called after "
"nsAHttpTransaction began processing");
mTransaction->Close(NS_ERROR_ABORT);
return;

View File

@ -3217,7 +3217,7 @@ nsHalfOpenSocket::OnOutputStreamReady(nsIAsyncOutputStream *out)
index = mEnt->mPendingQ.IndexOf(mTransaction);
if (index != -1) {
MOZ_ASSERT(!mSpeculative,
"Speculative Half Open found mTranscation");
"Speculative Half Open found mTransaction");
nsRefPtr<nsHttpTransaction> temp = dont_AddRef(mEnt->mPendingQ[index]);
mEnt->mPendingQ.RemoveElementAt(index);
gHttpHandler->ConnMgr()->AddActiveConn(conn, mEnt);