~ubuntu-branches/debian/stretch/apt-cacher-ng/stretch

« back to all changes in this revision

Viewing changes to source/job.cc

  • Committer: Package Import Robot
  • Author(s): Eduard Bloch
  • Date: 2015-09-21 21:35:41 UTC
  • mfrom: (1.6.28)
  • Revision ID: package-import@ubuntu.com-20150921213541-rh3tsf8k2g2n0fdr
Tags: 0.8.6-1
* New upstream version
  + replaces the expiration call mechanism and script with native
    implementation (closes: 794328)
* Changed error log rotation schedule to daily execution (to expire some
  cruft from ancient bugs sooner or later)
* removed urlencode-fixer.pl (should be obsolete now), expire-caller.pl
  (symlink to acngtool which emulates it)

Show diffs side-by-side

added added

removed removed

Lines of Context:
497
497
                if (startsWithSz(sReqPath, "/HTTPS///"))
498
498
                        sReqPath.replace(0, 6, PROT_PFX_HTTPS);
499
499
                // special case: proxy-mode AND special prefix are there
500
 
                if (startsWithSz(sReqPath, "http://HTTPS///"))
 
500
                if(0==strncasecmp(sReqPath.c_str(), WITHLEN("http://https///")))
501
501
                        sReqPath.replace(0, 13, PROT_PFX_HTTPS);
502
502
 
503
503
                if(!theUrl.SetHttpUrl(sReqPath, false))