diff --git a/utils/astman.1 b/utils/astman.1 index 3ce46c9bea..dd1539d476 100644 --- a/utils/astman.1 +++ b/utils/astman.1 @@ -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 diff --git a/utils/db1-ast/hash/README b/utils/db1-ast/hash/README index 321de7d5da..8104318737 100644 --- a/utils/db1-ast/hash/README +++ b/utils/db1-ast/hash/README @@ -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 diff --git a/utils/db1-ast/hash/hash.h b/utils/db1-ast/hash/hash.h index d07db6f071..5a22bb16df 100644 --- a/utils/db1-ast/hash/hash.h +++ b/utils/db1-ast/hash/hash.h @@ -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 diff --git a/utils/db1-ast/mpool/mpool.c b/utils/db1-ast/mpool/mpool.c index f095b27f5a..9312d40850 100644 --- a/utils/db1-ast/mpool/mpool.c +++ b/utils/db1-ast/mpool/mpool.c @@ -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); diff --git a/utils/extconf.c b/utils/extconf.c index 2da33a82f0..e30015acf4 100644 --- a/utils/extconf.c +++ b/utils/extconf.c @@ -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. * */ diff --git a/utils/frame.c b/utils/frame.c index 97b9596617..136cf82550 100644 --- a/utils/frame.c +++ b/utils/frame.c @@ -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); } diff --git a/utils/frame.h b/utils/frame.h index 4bbc2199b0..a19b2c9600 100644 --- a/utils/frame.h +++ b/utils/frame.h @@ -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[]);