You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by gs...@apache.org on 2001/05/01 07:37:43 UTC

cvs commit: apr-util/include apr_sdbm.h

gstein      01/04/30 22:37:43

  Modified:    include  apr_sdbm.h
  Log:
  (missed in previous commit)
  
  *) change the return type of error_clear to void. fix the error_get
     declaration to return apr_status_t (rather than int).
  
  Revision  Changes    Path
  1.5       +2 -2      apr-util/include/apr_sdbm.h
  
  Index: apr_sdbm.h
  ===================================================================
  RCS file: /home/cvs/apr-util/include/apr_sdbm.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -u -r1.4 -r1.5
  --- apr_sdbm.h	2001/04/30 17:16:37	1.4
  +++ apr_sdbm.h	2001/05/01 05:37:43	1.5
  @@ -69,8 +69,8 @@
   
   /* utility functions */
   int apr_sdbm_rdonly(apr_sdbm_t *db);
  -int apr_sdbm_error_get(apr_sdbm_t *db);
  -int apr_sdbm_error_clear(apr_sdbm_t *db);
  +apr_status_t apr_sdbm_error_get(apr_sdbm_t *db);
  +void apr_sdbm_error_clear(apr_sdbm_t *db);
   
   typedef struct {
       char *dptr;