You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2002/04/04 18:39:00 UTC

cvs commit: apr/misc/unix errorcodes.c

wrowe       02/04/04 08:39:00

  Modified:    include  apr_errno.h
               misc/unix errorcodes.c
  Log:
    A better explanation of APR_INCOMPLETE as used today.
  
  Revision  Changes    Path
  1.87      +2 -3      apr/include/apr_errno.h
  
  Index: apr_errno.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_errno.h,v
  retrieving revision 1.86
  retrieving revision 1.87
  diff -u -r1.86 -r1.87
  --- apr_errno.h	13 Mar 2002 20:39:14 -0000	1.86
  +++ apr_errno.h	4 Apr 2002 16:38:59 -0000	1.87
  @@ -210,9 +210,8 @@
    * APR_CHILD_DONE     The child has finished executing
    * APR_CHILD_NOTDONE  The child has not finished executing
    * APR_TIMEUP         The operation did not finish before the timeout
  - * APR_INCOMPLETE     The character conversion stopped because of an 
  - *                    incomplete character or shift sequence at the end 
  - *                    of the input buffer.
  + * APR_INCOMPLETE     The operation was incomplete although some processing
  + *                    was performed and the results are partially valid
    * APR_BADCH          Getopt found an option not in the option string
    * APR_BADARG         Getopt found an option that is missing an argument 
    *                    and an argument was specified in the option string
  
  
  
  1.49      +1 -1      apr/misc/unix/errorcodes.c
  
  Index: errorcodes.c
  ===================================================================
  RCS file: /home/cvs/apr/misc/unix/errorcodes.c,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- errorcodes.c	13 Mar 2002 20:39:22 -0000	1.48
  +++ errorcodes.c	4 Apr 2002 16:38:59 -0000	1.49
  @@ -131,7 +131,7 @@
       case APR_TIMEUP:
           return "The timeout specified has expired";
       case APR_INCOMPLETE:
  -        return "The input data is incomplete";
  +        return "Partial results are valid but processing is incomplete";
       case APR_BADCH:
           return "Bad character specified on command line";
       case APR_BADARG: