From cvs-return-5722-apmail-apr-cvs-archive=apr.apache.org@apr.apache.org Wed Apr 21 20:58:58 2004 Return-Path: Delivered-To: apmail-apr-cvs-archive@www.apache.org Received: (qmail 69928 invoked from network); 21 Apr 2004 20:58:57 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 21 Apr 2004 20:58:57 -0000 Received: (qmail 88759 invoked by uid 500); 21 Apr 2004 20:58:45 -0000 Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 88710 invoked by uid 500); 21 Apr 2004 20:58:44 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 88656 invoked from network); 21 Apr 2004 20:58:44 -0000 Date: 21 Apr 2004 20:58:56 -0000 Message-ID: <20040421205856.69903.qmail@minotaur.apache.org> From: jorton@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/include apr_time.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jorton 2004/04/21 13:58:56 Modified: include apr_time.h Log: * include/apr_time.h: More null/NUL confusion. Revision Changes Path 1.63 +2 -2 apr/include/apr_time.h Index: apr_time.h =================================================================== RCS file: /home/cvs/apr/include/apr_time.h,v retrieving revision 1.62 retrieving revision 1.63 diff -w -d -u -r1.62 -r1.63 --- apr_time.h 13 Feb 2004 09:38:28 -0000 1.62 +++ apr_time.h 21 Apr 2004 20:58:56 -0000 1.63 @@ -182,7 +182,7 @@ * apr_rfc822_date formats dates in the RFC822 * format in an efficient manner. It is a fixed length * format which requires the indicated amount of storage, - * including the trailing null byte. + * including the trailing NUL terminator. * @param date_str String to write to. * @param t the time to convert */ @@ -194,7 +194,7 @@ * apr_ctime formats dates in the ctime() format * in an efficient manner. it is a fixed length format * and requires the indicated amount of storage including - * the trailing null byte. + * the trailing NUL terminator. * Unlike ANSI/ISO C ctime(), apr_ctime() does not include * a \n at the end of the string. * @param date_str String to write to.