Fixed some typos, courtesy of codespell

This commit is contained in:
Tobias Brunner 2017-03-22 13:13:56 +01:00
parent 693107f6ae
commit 1003cf2330
8 changed files with 9 additions and 9 deletions

4
NEWS
View File

@ -1397,7 +1397,7 @@ strongswan-4.3.5
correctly if the system time changes (e.g. when using NTP). correctly if the system time changes (e.g. when using NTP).
- In addition to time based rekeying, charon supports IPsec SA lifetimes based - In addition to time based rekeying, charon supports IPsec SA lifetimes based
on processed volume or number of packets. They new ipsec.conf paramaters on processed volume or number of packets. They new ipsec.conf parameters
'lifetime' (an alias to 'keylife'), 'lifebytes' and 'lifepackets' handle 'lifetime' (an alias to 'keylife'), 'lifebytes' and 'lifepackets' handle
SA timeouts, while the parameters 'margintime' (an alias to rekeymargin), SA timeouts, while the parameters 'margintime' (an alias to rekeymargin),
'marginbytes' and 'marginpackets' trigger the rekeying before a SA expires. 'marginbytes' and 'marginpackets' trigger the rekeying before a SA expires.
@ -1625,7 +1625,7 @@ strongswan-4.2.10
counterparts with better lookup times. counterparts with better lookup times.
- Better parallelization to run charon on multiple cores. Due to improved - Better parallelization to run charon on multiple cores. Due to improved
ressource locking and other optimizations the daemon can take full resource locking and other optimizations the daemon can take full
advantage of 16 or even more cores. advantage of 16 or even more cores.
- The load-tester plugin can use a NULL Diffie-Hellman group and simulate - The load-tester plugin can use a NULL Diffie-Hellman group and simulate

View File

@ -169,7 +169,7 @@
* IKE_SA. * IKE_SA.
* *
* The controller, credential_manager, bus and backend_manager (config) are * The controller, credential_manager, bus and backend_manager (config) are
* places where a plugin ca register itself to privide information or observe * places where a plugin ca register itself to provide information or observe
* and control the daemon. * and control the daemon.
*/ */

View File

@ -258,7 +258,7 @@ Initiates an SA while streaming _control-log_ events.
{ {
child = <CHILD_SA configuration name to initiate> child = <CHILD_SA configuration name to initiate>
ike = <optional IKE_SA configuraiton name to find child under> ike = <optional IKE_SA configuration name to find child under>
timeout = <timeout in ms before returning> timeout = <timeout in ms before returning>
init-limits = <whether limits may prevent initiating the CHILD_SA> init-limits = <whether limits may prevent initiating the CHILD_SA>
loglevel = <loglevel to issue "control-log" events for> loglevel = <loglevel to issue "control-log" events for>

View File

@ -38,7 +38,7 @@ typedef struct vici_config_t vici_config_t;
struct vici_config_t { struct vici_config_t {
/** /**
* Implements a configuraiton backend. * Implements a configuration backend.
*/ */
backend_t backend; backend_t backend;

View File

@ -1,5 +1,5 @@
/* /*
* Coypright (C) 2016 Andreas Steffen * Copyright (C) 2016 Andreas Steffen
* Copyright (C) 2006-2016 Tobias Brunner * Copyright (C) 2006-2016 Tobias Brunner
* Copyright (C) 2005-2008 Martin Willi * Copyright (C) 2005-2008 Martin Willi
* Copyright (C) 2006 Daniel Roethlisberger * Copyright (C) 2006 Daniel Roethlisberger

View File

@ -212,7 +212,7 @@ struct linked_list_t {
/** /**
* Clones a list and its objects using the objects' clone method. * Clones a list and its objects using the objects' clone method.
* *
* @param offset offset ot the objects clone function * @param offset offset to the objects clone function
* @return cloned list * @return cloned list
*/ */
linked_list_t *(*clone_offset) (linked_list_t *this, size_t offset); linked_list_t *(*clone_offset) (linked_list_t *this, size_t offset);

View File

@ -266,7 +266,7 @@ end:
* } * }
* *
* While the parameters and publicKey fields are OPTIONAL, RFC 5915 says that * While the parameters and publicKey fields are OPTIONAL, RFC 5915 says that
* paramaters MUST be included and publicKey SHOULD be. * parameters MUST be included and publicKey SHOULD be.
*/ */
static bool is_ec_private_key(chunk_t blob) static bool is_ec_private_key(chunk_t blob)
{ {

View File

@ -329,7 +329,7 @@ static bool check_alerts(private_tls_fragmentation_t *this, chunk_t *data)
} }
/** /**
* Build hanshake message * Build handshake message
*/ */
static status_t build_handshake(private_tls_fragmentation_t *this) static status_t build_handshake(private_tls_fragmentation_t *this)
{ {