You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2003/07/01 14:31:26 UTC

cvs commit: httpd-apreq-2/glue/perl/xsbuilder/Apache/Cookie Apache__Cookie.h

joes        2003/07/01 05:31:26

  Modified:    glue/perl/xsbuilder/Apache/Cookie Apache__Cookie.h
  Log:
  Fixt typo- apr_rfc_822_date. Thanks, Randy.
  
  Revision  Changes    Path
  1.12      +1 -1      httpd-apreq-2/glue/perl/xsbuilder/Apache/Cookie/Apache__Cookie.h
  
  Index: Apache__Cookie.h
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/glue/perl/xsbuilder/Apache/Cookie/Apache__Cookie.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Apache__Cookie.h	29 Jun 2003 03:41:17 -0000	1.11
  +++ Apache__Cookie.h	1 Jul 2003 12:31:26 -0000	1.12
  @@ -135,7 +135,7 @@
   
       if (c->version == NETSCAPE) {
           char expires[APR_RFC822_DATE_LEN] = {0};
  -        apreq_rfc_822_date(expires, c->max_age + apr_time_now());
  +        apr_rfc_822_date(expires, c->max_age + apr_time_now());
           expires[7] = '-';
           expires[11] = '-';
           XSRETURN_PV(expires);
  
  
  

Re: cvs commit: httpd-apreq-2/glue/perl/xsbuilder/Apache/Cookie Apache__Cookie.h

Posted by Joe Schaefer <jo...@sunstarsys.com>.
Randy Kobes <ra...@theoryx5.uwinnipeg.ca> writes:

> Thanks, Joe. Should that be apr_rfc822_date? As in

Of course.  How does gcc put up with my crap?

  % make perl_glue
  % make perl_test
  [...]
  All tests successful.

???

Please commit the fix, Randy.

Thanks.
-- 
Joe Schaefer


Re: cvs commit: httpd-apreq-2/glue/perl/xsbuilder/Apache/Cookie Apache__Cookie.h

Posted by Randy Kobes <ra...@theoryx5.uwinnipeg.ca>.
On Tue, 1 Jul 2003 joes@apache.org wrote:

> joes        2003/07/01 05:31:26
>
>   Modified:    glue/perl/xsbuilder/Apache/Cookie Apache__Cookie.h
>   Log:
>   Fixt typo- apr_rfc_822_date. Thanks, Randy.
>
>   Revision  Changes    Path
>   1.12      +1 -1      httpd-apreq-2/glue/perl/xsbuilder/Apache/Cookie/Apache__Cookie.h
>
>   Index: Apache__Cookie.h
>   ===================================================================
>   RCS file: /home/cvs/httpd-apreq-2/glue/perl/xsbuilder/Apache/Cookie/Apache__Cookie.h,v
>   retrieving revision 1.11
>   retrieving revision 1.12
>   diff -u -r1.11 -r1.12
>   --- Apache__Cookie.h	29 Jun 2003 03:41:17 -0000	1.11
>   +++ Apache__Cookie.h	1 Jul 2003 12:31:26 -0000	1.12
>   @@ -135,7 +135,7 @@
>
>        if (c->version == NETSCAPE) {
>            char expires[APR_RFC822_DATE_LEN] = {0};
>   -        apreq_rfc_822_date(expires, c->max_age + apr_time_now());
>   +        apr_rfc_822_date(expires, c->max_age + apr_time_now());
                   ^^^
Thanks, Joe. Should that be apr_rfc822_date? As in

===================================================================
Index: Apache__Cookie.h
===================================================================
RCS file: /home/cvs/httpd-apreq-2/glue/perl/xsbuilder/Apache/Cookie/Apache__Cookie.h,v
retrieving revision 1.12
diff -u -r1.12 Apache__Cookie.h
--- Apache__Cookie.h	1 Jul 2003 12:31:26 -0000	1.12
+++ Apache__Cookie.h	1 Jul 2003 18:37:15 -0000
@@ -135,7 +135,7 @@

     if (c->version == NETSCAPE) {
         char expires[APR_RFC822_DATE_LEN] = {0};
-        apr_rfc_822_date(expires, c->max_age + apr_time_now());
+        apr_rfc822_date(expires, c->max_age + apr_time_now());
         expires[7] = '-';
         expires[11] = '-';
         XSRETURN_PV(expires);
===========================================================================

-- 
best regards,
randy