res: Spelling fixes

Correct typos of the following word families:

identifying
structures
actcount
initializer
attributes
statement
enough
locking
declaration
userevent
provides
unregister
session
execute
searches
verification
suppressed
prepared
passwords
recipients
event
because
brief
unidentified
redundancy
character
the
module
reload
operation
backslashes
accurate
incorrect
collision
initializing
instance
interpreted
buddies
omitted
manually
requires
queries
generator
scheduler
configuration has
owner
resource
performed
masquerade
apparently
routable

ASTERISK-29714

Change-Id: I88485116d2c59b776aa2e1f8b4ce8239a21decda
This commit is contained in:
Josh Soref
2021-10-30 21:04:36 -04:00
committed by Friendly Automation
parent ccfebc3cfc
commit dcf492e7b6
45 changed files with 68 additions and 68 deletions

View File

@@ -96,7 +96,7 @@ struct global_config {
unsigned int unidentified_request_count;
/*! The period during which unidentified requests are accumulated */
unsigned int unidentified_request_period;
/*! Interval at which expired unidentifed requests will be pruned */
/*! Interval at which expired unidentified requests will be pruned */
unsigned int unidentified_request_prune_interval;
struct {
/*! Taskprocessor high water alert trigger level */

View File

@@ -427,7 +427,7 @@ static int ident_handler(const struct aco_option *opt, struct ast_variable *var,
return -1;
}
if (endpoint->ident_method & method) {
/* We are already indentifying by this method. No need to do it again. */
/* We are already identifying by this method. No need to do it again. */
continue;
}

View File

@@ -55,7 +55,7 @@ struct ast_sip_sched_task {
struct timeval next_periodic;
/*! reschedule interval in milliseconds */
int interval;
/*! ast_sched scheudler id */
/*! ast_sched scheduler id */
int current_scheduler_id;
/*! task is currently running */
int is_running;

View File

@@ -119,7 +119,7 @@ void ast_sip_session_remove_supplements(struct ast_sip_session *session)
/* free the supplements */
while ((iter = AST_LIST_REMOVE_HEAD(&session->supplements, next))) {
if (iter->module) {
/* referenced session closed. decreasing modue reference. */
/* referenced session closed. decreasing module reference. */
ast_module_unref(iter->module);
}