quic: fix fix spelling typo found by lintian

Change-Id: Ifeadd5f7b9760e0ce2a58b2c1a3c497bc5f4cda0
Reviewed-on: https://code.wireshark.org/review/18521
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2016-10-27 17:53:34 +02:00 committed by Anders Broman
parent 5b9934cb03
commit c9f1a607c9
1 changed files with 2 additions and 2 deletions

View File

@ -607,7 +607,7 @@ enum QuicErrorCode {
QUIC_TOO_MANY_RTOS = 85,
/* Crypto errors. */
/* Hanshake failed. */
/* Handshake failed. */
QUIC_HANDSHAKE_FAILED = 28,
/* Handshake message contained out of order tags. */
QUIC_CRYPTO_TAGS_OUT_OF_ORDER = 29,
@ -721,7 +721,7 @@ static const value_string error_code_vals[] = {
{ QUIC_CONNECTION_TIMED_OUT, "We hit our prenegotiated (or default) timeout" },
{ QUIC_ERROR_MIGRATING_ADDRESS, "There was an error encountered migrating addresses" },
{ QUIC_PACKET_WRITE_ERROR, "There was an error while writing to the socket" },
{ QUIC_HANDSHAKE_FAILED, "Hanshake failed" },
{ QUIC_HANDSHAKE_FAILED, "Handshake failed" },
{ QUIC_CRYPTO_TAGS_OUT_OF_ORDER, "Handshake message contained out of order tags" },
{ QUIC_CRYPTO_TOO_MANY_ENTRIES, "Handshake message contained too many entries" },
{ QUIC_CRYPTO_INVALID_VALUE_LENGTH, "Handshake message contained an invalid value length" },