diff options
author | Tobias Brunner <tobias@strongswan.org> | 2017-08-07 17:22:01 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2017-08-07 17:22:01 +0200 |
commit | ca280574baae12159973785b11b48de4b50ee39f (patch) | |
tree | d510362b9bb9fe91f74527c896585c86cae37d1a /src/libcharon/encoding/message.h | |
parent | c11d13c4b94a2f0533344a200de2bd8d106ecb97 (diff) | |
download | strongswan-ca280574baae12159973785b11b48de4b50ee39f.tar.bz2 strongswan-ca280574baae12159973785b11b48de4b50ee39f.tar.xz |
Fixed some typos, courtesy of codespell
Diffstat (limited to 'src/libcharon/encoding/message.h')
-rw-r--r-- | src/libcharon/encoding/message.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libcharon/encoding/message.h b/src/libcharon/encoding/message.h index 8c4372974..732fd9b54 100644 --- a/src/libcharon/encoding/message.h +++ b/src/libcharon/encoding/message.h @@ -312,7 +312,7 @@ struct message_t { status_t (*add_fragment)(message_t *this, message_t *fragment); /** - * Gets the source host informations. + * Gets the source host information. * * @warning Returned host_t object is not getting cloned, * do not destroy nor modify. @@ -322,7 +322,7 @@ struct message_t { host_t * (*get_source) (message_t *this); /** - * Sets the source host informations. + * Sets the source host information. * * @warning host_t object is not getting cloned and gets destroyed by * message_t.destroy or next call of message_t.set_source. @@ -332,7 +332,7 @@ struct message_t { void (*set_source) (message_t *this, host_t *host); /** - * Gets the destination host informations. + * Gets the destination host information. * * @warning Returned host_t object is not getting cloned, * do not destroy nor modify. @@ -342,7 +342,7 @@ struct message_t { host_t * (*get_destination) (message_t *this); /** - * Sets the destination host informations. + * Sets the destination host information. * * @warning host_t object is not getting cloned and gets destroyed by * message_t.destroy or next call of message_t.set_destination. |