Fixed some typos, courtesy of codespell

This commit is contained in:
Tobias Brunner 2017-05-26 14:44:06 +02:00
parent cd0bba90a9
commit b2473e94a2
10 changed files with 13 additions and 13 deletions

View File

@ -497,7 +497,7 @@
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="has_tooltip">True</property>
<property name="tooltip_text" translatable="yes">A list of proposals for IKE seperated by ";". (A suffix of ! enforces strict mode)</property>
<property name="tooltip_text" translatable="yes">A list of proposals for IKE separated by ";". (A suffix of ! enforces strict mode)</property>
<property name="invisible_char">•</property>
<property name="invisible_char_set">True</property>
<property name="primary_icon_activatable">False</property>
@ -532,7 +532,7 @@
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="has_tooltip">True</property>
<property name="tooltip_text" translatable="yes">A list of proposals for ESP seperated by ";". (A suffix of ! enforces strict mode)</property>
<property name="tooltip_text" translatable="yes">A list of proposals for ESP separated by ";". (A suffix of ! enforces strict mode)</property>
<property name="invisible_char">•</property>
<property name="invisible_char_set">True</property>
<property name="primary_icon_activatable">False</property>

View File

@ -56,12 +56,12 @@ static bool check_addrblock(private_addrblock_validator_t *this,
}
if (!subject_const)
{
DBG1(DBG_CFG, "subject certficate lacks ipAddrBlocks extension");
DBG1(DBG_CFG, "subject certificate lacks ipAddrBlocks extension");
return !this->strict;
}
if (!issuer_const)
{
DBG1(DBG_CFG, "issuer certficate lacks ipAddrBlocks extension");
DBG1(DBG_CFG, "issuer certificate lacks ipAddrBlocks extension");
return FALSE;
}
subject_enumerator = subject->create_ipAddrBlock_enumerator(subject);

View File

@ -37,7 +37,7 @@ struct medcli_creds_t {
credential_set_t set;
/**
* Destroy the credentials databse.
* Destroy the credentials database.
*/
void (*destroy)(medcli_creds_t *this);
};

View File

@ -37,7 +37,7 @@ struct medcli_listener_t {
listener_t listener;
/**
* Destroy the credentials databse.
* Destroy the credentials database.
*/
void (*destroy)(medcli_listener_t *this);
};

View File

@ -37,7 +37,7 @@ struct medsrv_creds_t {
credential_set_t set;
/**
* Destroy the credentials databse.
* Destroy the credentials database.
*/
void (*destroy)(medsrv_creds_t *this);
};

View File

@ -344,7 +344,7 @@ METHOD(imc_os_info_t, create_package_enumerator, enumerator_t*,
return NULL;
}
/* Open a pipe stream for reading the output of the dpkg-query commmand */
/* Open a pipe stream for reading the output of the dpkg-query command */
file = popen(command, "r");
if (!file)
{

View File

@ -116,7 +116,7 @@ static bool do_netstat(ietf_attr_port_filter_t *attr)
const char loopback_v4[] = "127.0.0.1";
const char loopback_v6[] = "::1";
/* Open a pipe stream for reading the output of the netstat commmand */
/* Open a pipe stream for reading the output of the netstat command */
file = popen("/bin/netstat -n -l -p -4 -6 --inet", "r");
if (!file)
{

View File

@ -42,14 +42,14 @@ struct imc_test_state_t {
/**
* get the command to send to IMV
*
* @return commmand to send to IMV
* @return command to send to IMV
*/
char* (*get_command)(imc_test_state_t *this);
/**
* set the command to send to IMV
*
* @param command commmand to send to IMV
* @param command command to send to IMV
*/
void (*set_command)(imc_test_state_t *this, char *command);

View File

@ -62,7 +62,7 @@ struct mem_cred_t {
/**
* Get an existing reference to the same certificate.
*
* Searches for the same certficate in the set, and returns a reference
* Searches for the same certificate in the set, and returns a reference
* to it, destroying the passed certificate. If the passed certificate
* is not found, it is just returned.
*

View File

@ -28,7 +28,7 @@
-A INPUT -p icmpv6 --icmpv6-type neighbor-advertisement -j ACCEPT
-A OUTPUT -p icmpv6 --icmpv6-type neighbor-advertisement -j ACCEPT
# allow crl and certficate fetch from winnetou
# allow crl and certificate fetch from winnetou
-A INPUT -i eth0 -p tcp --sport 80 -s fec0::15 -j ACCEPT
-A OUTPUT -o eth0 -p tcp --dport 80 -d fec0::15 -j ACCEPT