bnicholes    01/08/31 14:45:53

  Modified:    user/netware userinfo.c groupinfo.c
  Log:
  Changed stub from returning APR_SUCCESS to APR_ENOTIMPL until we
  can figure out how to implement these functions.
  
  Revision  Changes    Path
  1.2       +5 -5      apr/user/netware/userinfo.c
  
  Index: userinfo.c
  ===================================================================
  RCS file: /home/cvs/apr/user/netware/userinfo.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- userinfo.c        2001/08/31 16:28:05     1.1
  +++ userinfo.c        2001/08/31 21:45:53     1.2
  @@ -72,14 +72,14 @@
                                     struct passwd *pw,
                                     char pwbuf[PWBUF_SIZE])
   {
  -    return APR_SUCCESS;
  +    return APR_ENOTIMPL;
   }
   
   APR_DECLARE(apr_status_t) apr_get_home_directory(char **dirname,
                                                    const char *username,
                                                    apr_pool_t *p)
   {
  -    return APR_SUCCESS;
  +    return APR_ENOTIMPL;
   }
   
   
  @@ -88,7 +88,7 @@
                                                apr_gid_t *gid,
                                                apr_pool_t *p)
   {
  -    return APR_SUCCESS;
  +    return APR_ENOTIMPL;
   }
   
   
  @@ -97,12 +97,12 @@
   APR_DECLARE(apr_status_t) apr_get_userid(apr_uid_t *uid, apr_gid_t *gid,
                                            const char *username, apr_pool_t *p)
   {
  -    return APR_SUCCESS;
  +    return APR_ENOTIMPL;
   }
   
   APR_DECLARE(apr_status_t) apr_get_username(char **username, apr_uid_t 
userid, apr_pool_t *p)
   {
  -    return APR_SUCCESS;
  +    return APR_ENOTIMPL;
   }
   
     
  
  
  
  1.2       +1 -1      apr/user/netware/groupinfo.c
  
  Index: groupinfo.c
  ===================================================================
  RCS file: /home/cvs/apr/user/netware/groupinfo.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- groupinfo.c       2001/08/31 16:28:05     1.1
  +++ groupinfo.c       2001/08/31 21:45:53     1.2
  @@ -68,6 +68,6 @@
   
   APR_DECLARE(apr_status_t) apr_get_groupname(char **groupname, apr_gid_t 
groupid, apr_pool_t *p)
   {
  -    return APR_SUCCESS;
  +    return APR_ENOTIMPL;
   }
     
  
  
  

Reply via email to