aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authortzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-02 15:54:17 +0000
committertzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-02 15:54:17 +0000
commita39c97dfbeacda618ddaec4261fd5253eefd65c1 (patch)
treefd44a4509b385456373b00ab60456e1e033b7549 /res
parentff5b385c6dc532c9b295702d28bce9bbcef7a3c7 (diff)
Fix various typos, reported by Lintian
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@273640 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c2
-rw-r--r--res/res_jabber.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 000575762..27d363429 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -1651,7 +1651,7 @@ static char usage_recordfile[] =
" to the offset without exceeding the end of the file. \"silence\" is the number\n"
" of seconds of silence allowed before the function returns despite the\n"
" lack of dtmf digits or reaching timeout. Silence value must be\n"
-" preceeded by \"s=\" and is also optional.\n";
+" preceded by \"s=\" and is also optional.\n";
static char usage_autohangup[] =
" Usage: SET AUTOHANGUP <time>\n"
diff --git a/res/res_jabber.c b/res/res_jabber.c
index d1729f179..258a98352 100644
--- a/res/res_jabber.c
+++ b/res/res_jabber.c
@@ -676,16 +676,16 @@ static int aji_act_hook(void *data, int type, iks *node)
case IKS_PAK_S10N:
aji_handle_subscribe(client, pak);
if (option_debug)
- ast_log(LOG_DEBUG, "JABBER: I Dont know S10N subscribe!!\n");
+ ast_log(LOG_DEBUG, "JABBER: I Don't know S10N subscribe!!\n");
break;
case IKS_PAK_IQ:
if (option_debug)
- ast_log(LOG_DEBUG, "JABBER: I Dont have an IQ!!!\n");
+ ast_log(LOG_DEBUG, "JABBER: I Don't have an IQ!!!\n");
aji_handle_iq(client, node);
break;
default:
if (option_debug)
- ast_log(LOG_DEBUG, "JABBER: I Dont know %i\n", pak->type);
+ ast_log(LOG_DEBUG, "JABBER: I Don't know %i\n", pak->type);
break;
}