aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
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 */