diff options
author | Martin Willi <martin@revosec.ch> | 2010-09-02 10:28:51 +0200 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2010-09-02 13:07:24 +0200 |
commit | ea6d7cb4bec2da8f4538cc142200eb7f94a2f9f7 (patch) | |
tree | 3aa64b4015abc9f7ea0a48f3fd21bd7c19ab1e54 | |
parent | bbdc85b66e2faa07a88870be18b57a631abf912b (diff) | |
download | strongswan-ea6d7cb4bec2da8f4538cc142200eb7f94a2f9f7.tar.bz2 strongswan-ea6d7cb4bec2da8f4538cc142200eb7f94a2f9f7.tar.xz |
Fixed typos in tls_writer method descriptions
-rw-r--r-- | src/libtls/tls_writer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libtls/tls_writer.h b/src/libtls/tls_writer.h index e6522dbfb..d3f09d5da 100644 --- a/src/libtls/tls_writer.h +++ b/src/libtls/tls_writer.h @@ -66,14 +66,14 @@ struct tls_writer_t { void (*write_data)(tls_writer_t *this, chunk_t value); /** - * Append a chunk of data with a 16-bit length header. + * Append a chunk of data with a 8-bit length header. * * @param value value to append */ void (*write_data8)(tls_writer_t *this, chunk_t value); /** - * Append a chunk of data with a 8-bit length header. + * Append a chunk of data with a 16-bit length header. * * @param value value to append */ |