You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by "William A. Rowe Jr." <wr...@rowe-clan.net> on 2011/09/01 18:37:46 UTC

Re: svn commit: r1163918 - /httpd/httpd/trunk/modules/http/byterange_filter.c

On 9/1/2011 1:30 AM, rpluem@apache.org wrote:
> Author: rpluem
> Date: Thu Sep  1 06:30:02 2011
> New Revision: 1163918
> 
> URL: http://svn.apache.org/viewvc?rev=1163918&view=rev
> Log:
> * Fix error message

> --- httpd/httpd/trunk/modules/http/byterange_filter.c (original)
> +++ httpd/httpd/trunk/modules/http/byterange_filter.c Thu Sep  1 06:30:02 2011
> @@ -640,7 +640,9 @@ static int ap_set_byterange(request_rec 
>      }
>      else if (num_ranges == 0 && unsatisfiable) {
>          /* If all ranges are unsatisfiable, we should return 416 */
> -        	ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "0U");
> +        ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
> +                      "All ranges in Range header (%s) are unsatisfiable",
> +                      it);

I know this isn't your change, but just noticed it.  APLOG_ERR?
At its highest shouldn't that be APLOG_INFO?

APLOG_ERR and APLOG_WARN should be reserved for server-side errors
that we have some control over, not bogus input :)

RE: svn commit: r1163918 - /httpd/httpd/trunk/modules/http/byterange_filter.c

Posted by "Plüm, Rüdiger, VF-Group" <ru...@vodafone.com>.
 

> -----Original Message-----
> From: William A. Rowe Jr. [mailto:wrowe@rowe-clan.net] 
> Sent: Donnerstag, 1. September 2011 18:38
> To: dev@httpd.apache.org
> Subject: Re: svn commit: r1163918 - 
> /httpd/httpd/trunk/modules/http/byterange_filter.c
> 
> On 9/1/2011 1:30 AM, rpluem@apache.org wrote:
> > Author: rpluem
> > Date: Thu Sep  1 06:30:02 2011
> > New Revision: 1163918
> > 
> > URL: http://svn.apache.org/viewvc?rev=1163918&view=rev
> > Log:
> > * Fix error message
> 
> > --- httpd/httpd/trunk/modules/http/byterange_filter.c (original)
> > +++ httpd/httpd/trunk/modules/http/byterange_filter.c Thu 
> Sep  1 06:30:02 2011
> > @@ -640,7 +640,9 @@ static int ap_set_byterange(request_rec 
> >      }
> >      else if (num_ranges == 0 && unsatisfiable) {
> >          /* If all ranges are unsatisfiable, we should return 416 */
> > -        	ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "0U");
> > +        ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
> > +                      "All ranges in Range header (%s) are 
> unsatisfiable",
> > +                      it);
> 
> I know this isn't your change, but just noticed it.  APLOG_ERR?
> At its highest shouldn't that be APLOG_INFO?
> 
> APLOG_ERR and APLOG_WARN should be reserved for server-side errors
> that we have some control over, not bogus input :)
> 

See r1163920 (http://svn.apache.org/viewvc?rev=1163920&view=rev) :-)

Regards

Rüdiger