aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_osplookup.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-10-26 17:52:15 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-10-26 17:52:15 +0000
commitb1b9710998ebc8f33f25c6f13ba838e01706f3bb (patch)
treeb4975a18a567f52ea48af4cb551f864df8d45d6d /apps/app_osplookup.c
parentc20e95709085540ac6e3a5bc013a8020f18ee377 (diff)
fix various spelling mistakes in comments (issue #8237, jmls)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@46339 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_osplookup.c')
-rw-r--r--apps/app_osplookup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_osplookup.c b/apps/app_osplookup.c
index 23ad0da84..235d19df3 100644
--- a/apps/app_osplookup.c
+++ b/apps/app_osplookup.c
@@ -131,7 +131,7 @@ struct osp_result {
/* OSP Module Global Variables */
AST_MUTEX_DEFINE_STATIC(osplock); /* Lock of OSP provider list */
static int osp_initialized = 0; /* Init flag */
-static int osp_hardware = 0; /* Hardware accelleration flag */
+static int osp_hardware = 0; /* Hardware acceleration flag */
static struct osp_provider* ospproviders = NULL; /* OSP provider list */
static unsigned int osp_tokenformat = TOKEN_ALGO_SIGNED; /* Token format supported */
@@ -1484,7 +1484,7 @@ static int osp_load(void)
t = ast_variable_retrieve(cfg, OSP_GENERAL_CAT, "accelerate");
if (t && ast_true(t)) {
if ((error = OSPPInit(1)) != OSPC_ERR_NO_ERROR) {
- ast_log(LOG_WARNING, "OSP: Unable to enable hardware accelleration\n");
+ ast_log(LOG_WARNING, "OSP: Unable to enable hardware acceleration\n");
OSPPInit(0);
} else {
osp_hardware = 1;