docs: Fix typos in apps/

Found via codespell

(cherry picked from commit b877d20d75)
This commit is contained in:
Luz Paz
2025-04-09 09:02:27 -04:00
committed by Asterisk Development Team
parent 27fb18a337
commit ec6b2091eb
20 changed files with 37 additions and 37 deletions

View File

@@ -837,7 +837,7 @@ static int eivr_comm(struct ast_channel *chan, struct ivr_localuser *u,
}
} else if (input[0] == EIVR_CMD_GET) {
char response[2048];
ast_verb(4, "Retriving Variables from channel: %s\n", &input[2]);
ast_verb(4, "Retrieving Variables from channel: %s\n", &input[2]);
ast_eivr_getvariable(chan, &input[2], response, sizeof(response));
send_eivr_event(eivr_events, 'G', response, chan);
} else if (input[0] == EIVR_CMD_SVAR) {
@@ -847,7 +847,7 @@ static int eivr_comm(struct ast_channel *chan, struct ivr_localuser *u,
ast_chan_log(LOG_NOTICE, chan, "Log message from EIVR: %s\n", &input[2]);
} else if (input[0] == EIVR_CMD_XIT) {
ast_chan_log(LOG_NOTICE, chan, "Exiting: %s\n", &input[2]);
ast_chan_log(LOG_WARNING, chan, "e'X'it command is depricated, use 'E'xit instead\n");
ast_chan_log(LOG_WARNING, chan, "e'X'it command is deprecated, use 'E'xit instead\n");
res = 0;
break;
} else if (input[0] == EIVR_CMD_EXIT) {