aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authordbrooks <dbrooks@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-27 20:28:28 +0000
committerdbrooks <dbrooks@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-27 20:28:28 +0000
commit241bc934ebd8fd306125821d11a59b2b4cb6e7a3 (patch)
treebf94564f4150bc5ef6feccb3045e4dff1aafb421 /main
parentb8e14facbc2fa758f828acf66da25e428b42de6e (diff)
Merged revisions 209098 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r209098 | dbrooks | 2009-07-27 11:33:50 -0500 (Mon, 27 Jul 2009) | 6 lines Fixing typos. Replaces "recieved" with "received" and "initilize" with "initialize" (closes issue #15571) Reported by: alecdavis ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@209233 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/features.c2
-rw-r--r--main/loader.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/main/features.c b/main/features.c
index e31b2526a..191519f73 100644
--- a/main/features.c
+++ b/main/features.c
@@ -1233,7 +1233,7 @@ static int builtin_blindtransfer(struct ast_channel *chan, struct ast_channel *p
if (!transferer->cdr) { /* this code should never get called (in a perfect world) */
transferer->cdr=ast_cdr_alloc();
if (transferer->cdr) {
- ast_cdr_init(transferer->cdr, transferer); /* initilize our channel's cdr */
+ ast_cdr_init(transferer->cdr, transferer); /* initialize our channel's cdr */
ast_cdr_start(transferer->cdr);
}
}
diff --git a/main/loader.c b/main/loader.c
index ba6af732d..2730eb950 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -756,7 +756,7 @@ static enum ast_module_load_result start_resource(struct ast_module *mod)
*
* If the ast_heap is provided (not NULL) the module is found and added to the
* heap without running the module's load() function. By doing this, modules
- * added to the resource_heap can be initilized later in order by priority.
+ * added to the resource_heap can be initialized later in order by priority.
*
* If the ast_heap is not provided, the module's load function will be executed
* immediately */