]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blob - aiccu/patches/0006-spelling-error.patch
aiccu: Import various patches
[people/amarx/ipfire-3.x.git] / aiccu / patches / 0006-spelling-error.patch
1 From ddeba48a677bfcede8018a74188569bb9a6ac280 Mon Sep 17 00:00:00 2001
2 From: Reinier Haasjes <reinier@haasjes.com>
3 Date: Fri, 17 Aug 2012 11:29:39 +0200
4 Subject: [PATCH 06/10] spelling error
5
6 Fix some spelling errors to satisfy lintian
7
8 Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
9 ---
10 common/aiccu_test.c | 2 +-
11 common/common.c | 2 +-
12 common/tic.c | 6 +++---
13 3 files changed, 5 insertions(+), 5 deletions(-)
14
15 diff --git a/common/aiccu_test.c b/common/aiccu_test.c
16 index 25bbdb2..2ac3c86 100755
17 --- a/common/aiccu_test.c
18 +++ b/common/aiccu_test.c
19 @@ -133,7 +133,7 @@ void aiccu_os_test(struct TIC_Tunnel *hTunnel, bool automatic)
20 printf("### This confirms the reachability of the other side of the tunnel\n");
21 printf("### If it doesn't reply then check your interface and routing tables\n");
22 printf("### Don't forget to check your firewall of course\n");
23 - printf("### If the previous test was succesful then this could be both\n");
24 + printf("### If the previous test was successful then this could be both\n");
25 printf("### a firewalling and a routing/interface problem\n");
26 printf("\n");
27 system_arg(PING6, PINGCOUNT, hTunnel->sIPv6_POP);
28 diff --git a/common/common.c b/common/common.c
29 index d45e567..116897f 100755
30 --- a/common/common.c
31 +++ b/common/common.c
32 @@ -491,7 +491,7 @@ bool sock_gotls(TLSSOCKET sock)
33 return false;
34 }
35
36 - dolog(LOG_DEBUG, "TLS Handshake completed succesfully\n");
37 + dolog(LOG_DEBUG, "TLS Handshake completed successfully\n");
38
39 sock->tls_active = true;
40 return true;
41 diff --git a/common/tic.c b/common/tic.c
42 index e0d70fe..6009d99 100755
43 --- a/common/tic.c
44 +++ b/common/tic.c
45 @@ -517,8 +517,8 @@ struct TIC_Tunnel *tic_GetTunnel(struct TIC_conf *tic, const char *sId)
46 struct in6_addr ipv6_ll, ipv6_local;
47 char ll[100];
48
49 - /* Log that the fetch was succesful */
50 - dolog(LOG_INFO, "Succesfully retrieved tunnel information for %s\n", sId);
51 + /* Log that the fetch was successful */
52 + dolog(LOG_INFO, "Successfully retrieved tunnel information for %s\n", sId);
53
54 /*
55 * Some TUN/TAP devices don't have any
56 @@ -652,7 +652,7 @@ struct TIC_POP *tic_GetPOP(struct TIC_conf *tic, const char *sId)
57 /* All went okay? */
58 if (buf[0] == '2' && buf[1] == '0' && buf[2] == '2')
59 {
60 - dolog(LOG_INFO, "Succesfully retrieved POP information for %s\n", sId);
61 + dolog(LOG_INFO, "Successfully retrieved POP information for %s\n", sId);
62 return pop;
63 }
64
65 --
66 1.8.1
67