You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2002/06/23 08:12:09 UTC

cvs commit: httpd-2.0/modules/dav/main mod_dav.c

wrowe       2002/06/22 23:12:09

  Modified:    modules/dav/main mod_dav.c
  Log:
    That's apr, not ap (any longer)
  
  Revision  Changes    Path
  1.81      +3 -3      httpd-2.0/modules/dav/main/mod_dav.c
  
  Index: mod_dav.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/dav/main/mod_dav.c,v
  retrieving revision 1.80
  retrieving revision 1.81
  diff -u -r1.80 -r1.81
  --- mod_dav.c	7 Jun 2002 22:31:34 -0000	1.80
  +++ mod_dav.c	23 Jun 2002 06:12:09 -0000	1.81
  @@ -3712,9 +3712,9 @@
   
       if (err != NULL) {
           err = dav_push_error(r->pool, err->status, 0,
  -                             ap_psprintf(r->pool,
  -                                         "Could not UPDATE %s.",
  -                                         ap_escape_html(r->pool, r->uri)),
  +                             apr_psprintf(r->pool,
  +                                          "Could not UPDATE %s.",
  +                                          ap_escape_html(r->pool, r->uri)),
                                err);
           return dav_handle_err(r, err, multi_response);
       }