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/10/07 10:21:16 UTC

cvs commit: apache-2.0/src/lib/apr/misc/unix Makefile.in

gstein      00/10/07 01:21:16

  Modified:    src/lib/apr/include apr_uuid.h
               src/lib/apr/misc/unix Makefile.in
  Log:
  doc nit and I missed a change to Makefile.in.
  
  Revision  Changes    Path
  1.3       +3 -3      apache-2.0/src/lib/apr/include/apr_uuid.h
  
  Index: apr_uuid.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_uuid.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- apr_uuid.h	2000/10/06 14:08:38	1.2
  +++ apr_uuid.h	2000/10/07 08:21:15	1.3
  @@ -74,7 +74,7 @@
   /**
    * Generate and return a (new) UUID
    * @param uuid The resulting UUID
  - * @deffunc int apr_get_uuid(apr_uuid_t *uuid)
  + * @deffunc void apr_get_uuid(apr_uuid_t *uuid)
    */ 
   void apr_get_uuid(apr_uuid_t *uuid);
   
  @@ -84,7 +84,7 @@
    *               be at least APR_UUID_FORMATTED_LENGTH + 1 bytes long to hold
    *               the formatted UUID and a null terminator
    * @param uuid The UUID to format
  - * @deffunc int apr_format_uuid(apr_pool_t *p, const apr_uuid_t *uuid)
  + * @deffunc void apr_format_uuid(apr_pool_t *p, const apr_uuid_t *uuid)
    */ 
   void apr_format_uuid(char *buffer, const apr_uuid_t *uuid);
   
  @@ -92,7 +92,7 @@
    * Parse a standard-format string into a UUID
    * @param uuid The resulting UUID
    * @param uuid_str The formatted UUID
  - * @deffunc int apr_parse_uuid(apr_uuid_t *uuid, const char *uuid_str)
  + * @deffunc apr_status_t apr_parse_uuid(apr_uuid_t *uuid, const char *uuid_str)
    */ 
   apr_status_t apr_parse_uuid(apr_uuid_t *uuid, const char *uuid_str);
   
  
  
  
  1.23      +1 -1      apache-2.0/src/lib/apr/misc/unix/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/misc/unix/Makefile.in,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- Makefile.in	2000/10/06 12:19:38	1.22
  +++ Makefile.in	2000/10/07 08:21:15	1.23
  @@ -18,7 +18,7 @@
   #LIB=libmisc.a
   
   OBJS=start.o getopt.o otherchild.o errorcodes.o rand.o canonerr.o \
  -	uuid.c getuuid.c
  +	uuid.o getuuid.o
   
   .c.o:
   	$(CC) $(CFLAGS) -c $(INCLUDES) $<