From 3854a2438eb6d2c3da025b56a6356b9f8f2675b9 Mon Sep 17 00:00:00 2001 From: BJ Weschke Date: Mon, 16 Jan 2006 17:37:44 +0000 Subject: Spelling corrections (mostly in comments and doxygen areas) #6249 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8100 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- app.c | 2 +- apps/app_queue.c | 14 +++++++------- asterisk.8 | 2 +- asterisk.c | 2 +- channel.c | 6 +++--- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/app.c b/app.c index 88d698f53..fedc95d57 100644 --- a/app.c +++ b/app.c @@ -55,7 +55,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") /* ! This function presents a dialtone and reads an extension into 'collect' -which must be a pointer to a **pre-initilized** array of char having a +which must be a pointer to a **pre-initialized** array of char having a size of 'size' suitable for writing to. It will collect no more than the smaller of 'maxlen' or 'size' minus the original strlen() of collect digits. \return 0 if extension does not exist, 1 if extension exists diff --git a/apps/app_queue.c b/apps/app_queue.c index 51cf18531..8cd7198c0 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -223,7 +223,7 @@ static char *app_upqm_descrip = /*! \brief Persistent Members astdb family */ static const char *pm_family = "/Queue/PersistentMembers"; -/* The maximum lengh of each persistent member queue database entry */ +/* The maximum length of each persistent member queue database entry */ #define PM_MAX_LEN 2048 /*! \brief queues.conf [general] option */ @@ -282,7 +282,7 @@ struct queue_ent { int pos; /*!< Where we are in the queue */ int prio; /*!< Our priority */ int last_pos_said; /*!< Last position we told the user */ - time_t last_periodic_announce_time; /*!< The last time we played a periodic anouncement */ + time_t last_periodic_announce_time; /*!< The last time we played a periodic announcement */ time_t last_pos; /*!< Last time we told the user their position */ int opos; /*!< Where we started in the queue */ int handled; /*!< Whether our call was handled */ @@ -2135,7 +2135,7 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce peer = NULL; if (!peer) { if (to) { - /* Musta gotten hung up */ + /* Must gotten hung up */ record_abandoned(qe); res = -1; } else { @@ -2302,7 +2302,7 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce ast_hangup(peer); update_queue(qe->parent, member); if (bridge == 0) - res = 1; /* JDG: bridge successfull, leave app_queue */ + res = 1; /* JDG: bridge successfully, leave app_queue */ else res = bridge; /* bridge error, stay in the queue */ } @@ -2332,7 +2332,7 @@ static struct member * interface_exists(struct ast_call_queue *q, char *interfac } -/* Dump all members in a specific queue to the databse +/* Dump all members in a specific queue to the database * * / = ;;[|...] * @@ -2561,7 +2561,7 @@ static void reload_queue_members(void) paused_tok = strsep(&member, ";"); if (!penalty_tok) { - ast_log(LOG_WARNING, "Error parsing persisent member string for '%s' (penalty)\n", queue_name); + ast_log(LOG_WARNING, "Error parsing persistent member string for '%s' (penalty)\n", queue_name); break; } penalty = strtol(penalty_tok, NULL, 10); @@ -2592,7 +2592,7 @@ static void reload_queue_members(void) ast_mutex_unlock(&qlock); if (db_tree) { - ast_log(LOG_NOTICE, "Queue members sucessfully reloaded from database.\n"); + ast_log(LOG_NOTICE, "Queue members successfully reloaded from database.\n"); ast_db_freetree(db_tree); } } diff --git a/asterisk.8 b/asterisk.8 index fe0a9ba86..28ea0ffde 100644 --- a/asterisk.8 +++ b/asterisk.8 @@ -77,7 +77,7 @@ socket, the asterisk database, etc. Provide brief summary of command line arguments and terminate. .TP \fB-i\fR -Prompt user to intialize any encrypted private keys for IAX2 +Prompt user to initialize any encrypted private keys for IAX2 secure authentication during startup. .TP \fB-L \fIloadaverage\fB\fR diff --git a/asterisk.c b/asterisk.c index a238baea0..ca75659ed 100644 --- a/asterisk.c +++ b/asterisk.c @@ -1940,7 +1940,7 @@ static void ast_readconfig(void) { /* Run as console (-c at startup, implies nofork) */ } else if (!strcasecmp(v->name, "console")) { ast_set2_flag(&ast_options, ast_true(v->value), AST_OPT_FLAG_CONSOLE); - /* Run with highg priority if the O/S permits (-p at startup) */ + /* Run with high priority if the O/S permits (-p at startup) */ } else if (!strcasecmp(v->name, "highpriority")) { ast_set2_flag(&ast_options, ast_true(v->value), AST_OPT_FLAG_HIGH_PRIORITY); /* Initialize RSA auth keys (IAX2) (-i at startup) */ diff --git a/channel.c b/channel.c index 4331e789b..928776cdd 100644 --- a/channel.c +++ b/channel.c @@ -484,7 +484,7 @@ int ast_best_codec(int fmts) }; - /* Find the first prefered codec in the format given */ + /* Find the first preferred codec in the format given */ for (x=0; x < (sizeof(prefs) / sizeof(prefs[0]) ); x++) if (fmts & prefs[x]) return prefs[x]; @@ -896,7 +896,7 @@ void ast_channel_free(struct ast_channel *chan) if(chan->music_state) ast_moh_cleanup(chan); - /* Free translatosr */ + /* Free translators */ if (chan->readtrans) ast_translator_free_path(chan->readtrans); if (chan->writetrans) @@ -2907,7 +2907,7 @@ int ast_do_masquerade(struct ast_channel *original) manager_event(EVENT_FLAG_CALL, "Rename", "Oldname: %s\r\nNewname: %s\r\nUniqueid: %s\r\n", newn, masqn, clone->uniqueid); manager_event(EVENT_FLAG_CALL, "Rename", "Oldname: %s\r\nNewname: %s\r\nUniqueid: %s\r\n", orig, newn, original->uniqueid); - /* Swap the technlogies */ + /* Swap the technologies */ t = original->tech; original->tech = clone->tech; clone->tech = t; -- cgit v1.2.3