diff --git a/cdr/cdr_beanstalkd.c b/cdr/cdr_beanstalkd.c index 524274ffb7..107cdfc424 100644 --- a/cdr/cdr_beanstalkd.c +++ b/cdr/cdr_beanstalkd.c @@ -20,7 +20,7 @@ * \file * \brief Asterisk Beanstalkd CDR records. * - * This module requires the beanstalk-client library, avaialble from + * This module requires the beanstalk-client library, available from * https://github.com/deepfryed/beanstalk-client * * See also diff --git a/cdr/cdr_custom.c b/cdr/cdr_custom.c index 11cf6f49cb..e520263732 100644 --- a/cdr/cdr_custom.c +++ b/cdr/cdr_custom.c @@ -142,7 +142,7 @@ static int custom_log(struct ast_cdr *cdr) dummy = ast_dummy_channel_alloc(); if (!dummy) { - ast_log(LOG_ERROR, "Unable to allocate channel for variable subsitution.\n"); + ast_log(LOG_ERROR, "Unable to allocate channel for variable substitution.\n"); return -1; } diff --git a/cdr/cdr_pgsql.c b/cdr/cdr_pgsql.c index 58ee7c1c5e..337266e291 100644 --- a/cdr/cdr_pgsql.c +++ b/cdr/cdr_pgsql.c @@ -375,7 +375,7 @@ static int pgsql_log(struct ast_cdr *cdr) /* If our argument size exceeds our buffer, grow it, * as PQescapeStringConn() expects the buffer to be - * adequitely sized and does *NOT* do size checking. + * adequately sized and does *NOT* do size checking. */ if (required_size > bufsize) { char *tmpbuf = ast_realloc(escapebuf, required_size); diff --git a/cdr/cdr_sqlite3_custom.c b/cdr/cdr_sqlite3_custom.c index 9f71c8481c..4df94d4666 100644 --- a/cdr/cdr_sqlite3_custom.c +++ b/cdr/cdr_sqlite3_custom.c @@ -253,7 +253,7 @@ static int write_cdr(struct ast_cdr *cdr) dummy = ast_dummy_channel_alloc(); if (!dummy) { - ast_log(LOG_ERROR, "Unable to allocate channel for variable subsitution.\n"); + ast_log(LOG_ERROR, "Unable to allocate channel for variable substitution.\n"); ast_free(value_string); ast_mutex_unlock(&lock); return 0;