]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
Fixed some typos, courtesy of codespell
authorTobias Brunner <tobias@strongswan.org>
Fri, 26 May 2017 12:44:06 +0000 (14:44 +0200)
committerTobias Brunner <tobias@strongswan.org>
Fri, 26 May 2017 12:44:06 +0000 (14:44 +0200)
src/frontends/gnome/properties/nm-strongswan-dialog.ui
src/libcharon/plugins/addrblock/addrblock_validator.c
src/libcharon/plugins/medcli/medcli_creds.h
src/libcharon/plugins/medcli/medcli_listener.h
src/libcharon/plugins/medsrv/medsrv_creds.h
src/libimcv/imc/imc_os_info.c
src/libimcv/plugins/imc_scanner/imc_scanner.c
src/libimcv/plugins/imc_test/imc_test_state.h
src/libstrongswan/credentials/sets/mem_cred.h
testing/hosts/default/etc/ip6tables.rules

index e1af547210dfbf18a8ea34563170ff04f6e1d116..ba00c5cc871ee444891d2104695872015bfa575b 100644 (file)
                         <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>
                         <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>
index d16a1170c529af701e3c642b1bb7ab3cd9cd770c..78e377c2a9318f3b0743f4cbc8ba23de2bbb1538 100644 (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);
index 4b5402653835e11d088dd98badfe7bd685beb3f8..ec17955a2bc83b0d24d1a83ecaa04871f586746b 100644 (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);
 };
index 4768beccd06e15c6209808f699e2ddbd49fc6490..860dcdc60d34a75e65cf7934d9c8527e31ed00af 100644 (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);
 };
index 2079601af6a0360768ddc307e862c03e235ef62c..08ecaa3f241b35a2bf8bf7275c095d72f9b2ac8e 100644 (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);
 };
index a40c30d20f1a482fb77f9686681bf926ad08bc08..cc23bb2503246903e522769ad5dbd75602e9f51f 100644 (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)
        {
index bf2479cf5f5250527dfe58cb8cc07d962862565a..93ed4271b614a1b0ce7b5c02c8fb3de730012b9d 100644 (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)
        {
index 5f9ee253766e4f34a595204f24ba89810d4d3285..365caff7ccd57433721a68a92f1190d1eabc1511 100644 (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);
 
index 13551526003e1ea0bc474123c365bb509fc6bb5e..f55c3ccdfbe84b9cad2e27d48fabad3e932c7318 100644 (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.
         *
index 6a2c6af8eb8982584bc6a714baf57e7b68edca1b..bcb86841409afa25933bb7c5c8d8581cf6fe9a30 100644 (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