Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 55923 invoked by uid 500); 21 Aug 2002 17:30:13 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 55741 invoked by uid 500); 21 Aug 2002 17:30:09 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 21 Aug 2002 17:30:09 -0000 Message-ID: <20020821173009.63363.qmail@icarus.apache.org> From: trawick@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util/include apr_dbm.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N trawick 2002/08/21 10:30:09 Modified: include apr_dbm.h Log: fix some typos Revision Changes Path 1.16 +4 -4 apr-util/include/apr_dbm.h Index: apr_dbm.h =================================================================== RCS file: /home/cvs/apr-util/include/apr_dbm.h,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- apr_dbm.h 13 Mar 2002 20:40:48 -0000 1.15 +++ apr_dbm.h 21 Aug 2002 17:30:09 -0000 1.16 @@ -86,7 +86,7 @@ { /** pointer to the 'data' to retrieve/store in the DBM */ char *dptr; - /** size of the 'data' to retreive/store in the DBM */ + /** size of the 'data' to retrieve/store in the DBM */ apr_size_t dsize; } apr_datum_t; @@ -94,7 +94,7 @@ #define APR_DBM_READONLY 1 /**< open for read-only access */ #define APR_DBM_READWRITE 2 /**< open for read-write access */ #define APR_DBM_RWCREATE 3 /**< open for r/w, create if needed */ -#define APR_DBM_RWTRUNC 4 /**< open for r/w, truncating a existing +#define APR_DBM_RWTRUNC 4 /**< open for r/w, truncating an existing DB if present */ /** * Open a dbm file by file name and type of DBM @@ -112,7 +112,7 @@ * APR_DBM_READONLY open for read-only access * APR_DBM_READWRITE open for read-write access * APR_DBM_RWCREATE open for r/w, create if needed - * APR_DBM_RWTRUNC open for r/w, truncatate if already there + * APR_DBM_RWTRUNC open for r/w, truncate if already there * * @param perm Permissions to apply to if created * @param cntxt The pool to use when creating the dbm @@ -136,7 +136,7 @@ * APR_DBM_READONLY open for read-only access * APR_DBM_READWRITE open for read-write access * APR_DBM_RWCREATE open for r/w, create if needed - * APR_DBM_RWTRUNC open for r/w, truncatate if already there + * APR_DBM_RWTRUNC open for r/w, truncate if already there * * @param perm Permissions to apply to if created * @param cntxt The pool to use when creating the dbm