]> git.ipfire.org Git - people/stevee/aiccu.git/commitdiff
spelling error
authorReinier Haasjes <reinier@haasjes.com>
Fri, 17 Aug 2012 09:29:39 +0000 (11:29 +0200)
committerStefan Schantl <stefan.schantl@ipfire.org>
Wed, 26 Aug 2015 18:21:34 +0000 (18:21 +0000)
Fix some spelling errors to satisfy lintian

Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
common/aiccu_test.c
common/common.c
common/tic.c

index 25bbdb2dcde5cd8decec5fbe2455011b66f8319a..2ac3c862ef5ae1774a6f68148c00496c29d60f73 100755 (executable)
@@ -133,7 +133,7 @@ void aiccu_os_test(struct TIC_Tunnel *hTunnel, bool automatic)
        printf("### This confirms the reachability of the other side of the tunnel\n");
        printf("### If it doesn't reply then check your interface and routing tables\n");
        printf("### Don't forget to check your firewall of course\n");
-       printf("### If the previous test was succesful then this could be both\n");
+       printf("### If the previous test was successful then this could be both\n");
        printf("### a firewalling and a routing/interface problem\n");
        printf("\n");
        system_arg(PING6, PINGCOUNT, hTunnel->sIPv6_POP);
index d45e567d664bda0759e44c909d8d04d56f82afa5..116897f079bed18268e7b83e9a0352327018e8ae 100755 (executable)
@@ -491,7 +491,7 @@ bool sock_gotls(TLSSOCKET sock)
                return false;
        }
 
-       dolog(LOG_DEBUG, "TLS Handshake completed succesfully\n");
+       dolog(LOG_DEBUG, "TLS Handshake completed successfully\n");
 
        sock->tls_active = true;
        return true;
index e0d70fefe36579c112cac2903ef32d293647a037..6009d99b74473953078bec62ee6f571c87f9c614 100755 (executable)
@@ -517,8 +517,8 @@ struct TIC_Tunnel *tic_GetTunnel(struct TIC_conf *tic, const char *sId)
                struct in6_addr ipv6_ll, ipv6_local;
                char ll[100];
 
-               /* Log that the fetch was succesful */
-               dolog(LOG_INFO, "Succesfully retrieved tunnel information for %s\n", sId);
+               /* Log that the fetch was successful */
+               dolog(LOG_INFO, "Successfully retrieved tunnel information for %s\n", sId);
 
                /*
                 * Some TUN/TAP devices don't have any
@@ -652,7 +652,7 @@ struct TIC_POP *tic_GetPOP(struct TIC_conf *tic, const char *sId)
        /* All went okay? */
        if (buf[0] == '2' && buf[1] == '0' && buf[2] == '2')
        {
-               dolog(LOG_INFO, "Succesfully retrieved POP information for %s\n", sId);
+               dolog(LOG_INFO, "Successfully retrieved POP information for %s\n", sId);
                return pop;
        }