utils: Spelling fixes

Correct typos of the following word families:

command-line
immediately
extensions
momentarily
mustn't
numbered
bytes
caching

ASTERISK-29714

Change-Id: I8b2b125c5d4d2f9e87a58515c97468ad47ca44f8
This commit is contained in:
Josh Soref 2021-10-30 21:04:32 -04:00 committed by Friendly Automation
parent 4490f0b962
commit 15c4814f55
7 changed files with 9 additions and 9 deletions

View File

@ -69,7 +69,7 @@ interface.
.B hostname
The host name or IP address to connect to (TCP port 5038). If astman
fails to connect it will exit immidiately.
fails to connect it will exit immediately.
.SH USAGE
If \fBastman\fR has successfully cunnected to the manager port it will

View File

@ -34,7 +34,7 @@ Test Programs:
to standard out.
tread2.c
Takes
butes of cache (ncached).
bytes of cache (ncached).
Reads key/data pairs from standard in and looks them up
in the file hashtest.
tverify.c

View File

@ -160,7 +160,7 @@ typedef struct htab { /* Memory resident data structure */
* the table, we can allocate extra pages. So, an overflow page number has
* the top 5 bits indicate which split point and the lower 11 bits indicate
* which page at that split point is indicated (pages within split points are
* numberered starting with 1).
* numbered starting with 1).
*/
#define SPLITSHIFT 11

View File

@ -463,7 +463,7 @@ mpool_stat(mp)
(void)fprintf(stderr, "%lu pages in the file\n", mp->npages);
(void)fprintf(stderr,
"page size %lu, cacheing %lu pages of %lu page max cache\n",
"page size %lu, caching %lu pages of %lu page max cache\n",
mp->pagesize, mp->curcache, mp->maxcache);
(void)fprintf(stderr, "%lu page puts, %lu page gets, %lu page new\n",
mp->pageput, mp->pageget, mp->pagenew);

View File

@ -19,7 +19,7 @@
/*!
* \file
* A condensation of the pbx_config stuff, to read into exensions.conf, and provide an interface to the data there,
* A condensation of the pbx_config stuff, to read into extensions.conf, and provide an interface to the data there,
* for operations outside of asterisk. A huge, awful hack.
*
*/

View File

@ -314,7 +314,7 @@ void startstopwatch(void)
/* --------------------------------------------------------------------
Tests the character 'coal' for being a command line option character,
momentarrily '-'.
momentarily '-'.
-------------------------------------------------------------------- */
int isoptionchar (char coal)
{
@ -885,7 +885,7 @@ void parseargs( int argcount, char *args[], int fileswitch)
/* Problem: what about i/o-file, 32? You might want a header
on that? Better ignore this case. */
break;
case 8: /* An application musn't ask for this */
case 8: /* An application mustn't ask for this */
default: /* This can't happen */
assert( FALSE);
}

View File

@ -121,7 +121,7 @@ extern void makewavheader( void);
/* --------------------------------------------------------------------
Tests the character 'coal' for being a command line option character,
momentarrily '/' or '-'.
momentarily '/' or '-'.
-------------------------------------------------------------------- */
extern int isoptionchar (char coal);
@ -175,7 +175,7 @@ extern int parseintarg( int argcount, char *args[], char *string,
that does not start with the optionchar. The filename is copied to
newly allocated memory, a pointer to which is returned.
The argument is marked as used. Therefore repeated use of this function
will yield a complete list of filenames on the commandline.
will yield a complete list of filenames on the command-line.
If malloc() fails, the function does not return.
-------------------------------------------------------------------- */
extern char *parsefilearg( int argcount, char *args[]);