You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gs...@locus.apache.org on 2000/07/08 13:01:58 UTC

cvs commit: apache-2.0/src/lib/apr/time/win32 access.c

gstein      00/07/08 04:01:58

  Modified:    src/lib/apr/time/win32 access.c
  Log:
  torch some obsolete/unused functions.
  
  Revision  Changes    Path
  1.9       +0 -25     apache-2.0/src/lib/apr/time/win32/access.c
  
  Index: access.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/time/win32/access.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- access.c	2000/04/04 20:33:47	1.8
  +++ access.c	2000/07/08 11:01:57	1.9
  @@ -240,28 +240,3 @@
       time->explodedtime->wDayOfWeek = value;
       return APR_SUCCESS;
   }
  -
  -ap_status_t ap_get_timedata(struct atime_t *atime, char *key, void *data)
  -{
  -    if (atime != NULL) {
  -        return ap_get_userdata(data, key, atime->cntxt);
  -    }
  -    else {
  -        data = NULL;
  -        return APR_ENOTIME;
  -    }
  -}
  -
  -ap_status_t ap_set_timedata(struct atime_t *atime, void *data, char *key,
  -                            ap_status_t (*cleanup) (void *))
  -{
  -    if (atime != NULL) {
  -        return ap_set_userdata(data, key, cleanup, atime->cntxt);
  -    }
  -    else {
  -        data = NULL;
  -        return APR_ENOTIME;
  -    }
  -}
  -
  -