| Index: trunk/src/net/quic/quic_framer.cc
|
| ===================================================================
|
| --- trunk/src/net/quic/quic_framer.cc (revision 198763)
|
| +++ trunk/src/net/quic/quic_framer.cc (working copy)
|
| @@ -1096,7 +1096,7 @@
|
| // safe.
|
| size_t min_plaintext_size = ciphertext_size;
|
|
|
| - for (int i = ENCRYPTION_NONE; i < NUM_ENCRYPTION_LEVELS; i++) {
|
| + for (int i = ENCRYPTION_NONE; i <= ENCRYPTION_FORWARD_SECURE; i++) {
|
| if (encrypter_[i].get() != NULL) {
|
| size_t size = encrypter_[i]->GetMaxPlaintextSize(ciphertext_size);
|
| if (size < min_plaintext_size) {
|
|
|