summaryrefslogtreecommitdiff
path: root/apps/app_osplookup.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-10-26 17:52:15 +0000
committerRussell Bryant <russell@russellbryant.com>2006-10-26 17:52:15 +0000
commit0ca6a42d7efa1a5b031228008495e9fe7e5d00b0 (patch)
treeb4975a18a567f52ea48af4cb551f864df8d45d6d /apps/app_osplookup.c
parent192a93aa379d5320c0a421ccd08e3a048cb400f2 (diff)
fix various spelling mistakes in comments (issue #8237, jmls)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@46339 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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;