Bug 1337303 - Corrected RFC number cited in comments r=mcmanus draft
authorNick <nick@foxsec.io>
Wed, 01 Mar 2017 11:51:43 -0500
changeset 491133 f89b98c8eded296bac8442da2a6dd59a2c124627
parent 490927 f58fb8e75a4d3e4bb908104295d004d0534f6660
child 547470 45002d6a20f6566db61d3195bd99edb783e7359f
push id47328
push userbmo:nick@foxsec.io
push dateWed, 01 Mar 2017 20:25:19 +0000
reviewersmcmanus
bugs1337303
milestone54.0a1
Bug 1337303 - Corrected RFC number cited in comments r=mcmanus MozReview-Commit-ID: A0tCpbFQsAX
netwerk/protocol/http/nsHttpChunkedDecoder.cpp
--- a/netwerk/protocol/http/nsHttpChunkedDecoder.cpp
+++ b/netwerk/protocol/http/nsHttpChunkedDecoder.cpp
@@ -22,17 +22,17 @@ nsHttpChunkedDecoder::HandleChunkedConte
                                            uint32_t count,
                                            uint32_t *contentRead,
                                            uint32_t *contentRemaining)
 {
     LOG(("nsHttpChunkedDecoder::HandleChunkedContent [count=%u]\n", count));
 
     *contentRead = 0;
 
-    // from RFC2617 section 3.6.1, the chunked transfer coding is defined as:
+    // from RFC2616 section 3.6.1, the chunked transfer coding is defined as:
     //
     //   Chunked-Body    = *chunk
     //                     last-chunk
     //                     trailer
     //                     CRLF
     //   chunk           = chunk-size [ chunk-extension ] CRLF
     //                     chunk-data CRLF
     //   chunk-size      = 1*HEX