Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder curl-unthreaded-solaris11-i386 Build #5387

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision4f888df0c407f7251de6e062f91c54b40b1c7e4f
Got Revision4f888df0c407f7251de6e062f91c54b40b1c7e4f
Changes1 change

BuildSlave:

unstable11x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris11-i386' triggered this build

Steps and Logfiles:

  1. git update ( 19 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 48 mins, 21 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 5387 Build
codebase Build
got_revision 4f888df0c407f7251de6e062f91c54b40b1c7e4f Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 4f888df0c407f7251de6e062f91c54b40b1c7e4f Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Joshua Rogers

Timing:

StartMon Sep 21 06:37:39 2026
EndMon Sep 21 07:26:24 2026
Elapsed48 mins, 44 secs

All Changes:

:

  1. Change #282370

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Mon 21 Sep 2026 08:14:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4f888df0c407f7251de6e062f91c54b40b1c7e4f

    Comments

    http: ignore Proxy-Authenticate unless the response comes from a proxy
    A 407 response was parsed for proxy authentication without checking
    where it came from, so a host reached directly, or an origin reached
    through a CONNECT tunnel, could set the proxy auth state. A later
    request to the proxy then sent a Proxy-Authorization built from the
    realm and nonce of that host, before the proxy challenged.
    
    The proxy peer stays set for tunnels, so gate on origin_is_proxy, the
    same condition Curl_http_output_auth() uses to emit these headers.
    
    Also flush the Digest state when it has no origin.
    
    Add test 1616.
    
    Closes #23002

    Changed files

    • lib/http.c
    • lib/http_digest.c
    • tests/data/Makefile.am
    • tests/data/test1616
    • tests/libtest/Makefile.inc
    • tests/libtest/lib1616.c