Last of the spelling fixed

This commit is contained in:
chase
2018-04-18 04:43:05 -07:00
committed by Jon Trulson
parent 6d3a19d8f9
commit 33d2749ea3
185 changed files with 279 additions and 279 deletions

View File

@@ -59,7 +59,7 @@ static void remove_from_chain(); /* used by _flrec_wrrec() */
* Output params:
* recnum record number of the new record
*
* Returns 0 if record was written succesfully, or -1 if any error.
* Returns 0 if record was written successfully, or -1 if any error.
*/
/*ARGSUSED*/
@@ -127,7 +127,7 @@ _flrec_write(fcb, record, recnum, reclen)
* Output params:
* record record buffer is filled with data
*
* Returns 0 if record was read succesfully, or error code if any error.
* Returns 0 if record was read successfully, or error code if any error.
*/
int
@@ -191,7 +191,7 @@ _fl_getpos(fcb, recnum)
* record new record
* int reclen (NOT USED)
*
* Returns 0 if record was rewritten succesfully, or error code if any error.
* Returns 0 if record was rewritten successfully, or error code if any error.
*/
/*ARGSUSED*/
@@ -238,7 +238,7 @@ _flrec_rewrite(fcb, record, recnum, reclen)
* FCB File Control Block
* recnum record number of the record
*
* Returns 0 if record was rewritten succesfully, or error code if any error.
* Returns 0 if record was rewritten successfully, or error code if any error.
*/
int
@@ -293,7 +293,7 @@ _flrec_delete(fcb, recnum)
* record record buffer
* int reclen (NOT USED)
*
* Returns 0 if record was written succesfully, or error code if any error.
* Returns 0 if record was written successfully, or error code if any error.
*
* Note that _flrec_wrrec() commits updates and syncs the FCB to avoid
* buffer pool overflow.

View File

@@ -159,7 +159,7 @@ isrepair(isfname, verbose)
maxreclen = ldint(cntlpg + CP_MAXRECLEN_OFF);
/*
* Check for maxreclen field value of -1. This could have occured due to
* Check for maxreclen field value of -1. This could have occurred due to
* ISMAXRECLEN being incorrectly set to 65535 in an earlier version. If
* this field is -1 and it's a variable length record, reset to the new
* value of MAXRECLEN. This means that this field will be repaired when

View File

@@ -62,7 +62,7 @@ static _istail_read();
* Output params:
* recnum record number of the new record
*
* Returns 0 if record was written succesfully, or -1 if any error.
* Returns 0 if record was written successfully, or -1 if any error.
*/
/*ARGSUSED*/
@@ -137,7 +137,7 @@ _vlrec_write(fcb, record, recnum, reclen)
* Output params:
* record record buffer is filled with data
*
* Returns 0 if record was read succesfully, or error code if any error.
* Returns 0 if record was read successfully, or error code if any error.
*/
int
@@ -211,7 +211,7 @@ _vl_getpos(fcb, recnum)
* record new record
* int reclen (NOT USED)
*
* Returns 0 if record was rewritten succesfully, or error code if any error.
* Returns 0 if record was rewritten successfully, or error code if any error.
*/
/*ARGSUSED*/
@@ -268,7 +268,7 @@ _vlrec_rewrite(fcb, record, recnum, reclen)
* FCB File Control Block
* recnum record number of the record
*
* Returns 0 if record was rewritten succesfully, or error code if any error.
* Returns 0 if record was rewritten successfully, or error code if any error.
*/
int
@@ -330,7 +330,7 @@ _vlrec_delete(fcb, recnum)
* record record buffer
* int reclen (NOT USED)
*
* Returns 0 if record was written succesfully, or error code if any error.
* Returns 0 if record was written successfully, or error code if any error.
*
* Note that _vlrec_wrrec() commits updates and syncs the FCB to avoid
* buffer pool overflow.