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

Builder curl-threaded-solaris11-i386 Build #4470

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg

Timing:

StartFri Jan 9 14:56:19 2026
EndFri Jan 9 16:36:11 2026
Elapsed1 hrs, 39 mins, 51 secs

All Changes:

:

  1. Change #254635

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 09 Jan 2026 13:32:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d881b911336eed4a939631f56e5ebe05b7954481

    Comments

    urldata: convert 'long' fields to fixed variable types
    Makes sure they work identically cross-platform, as long varies in size
    between Windows vs non-Windows. Makes Curl_easy 16 bytes smaller on 64
    bit Linux.
    
    This reduces support for the RTSP cseq counters to 32 bit (down from 63
    bit previously on 64 bit non-Windows), but it is probably safe.
    Implementations probably rarely support anything above 32 bits anyway
    and this is how curl has worked on Windows since always.
    
    There is now only one 'long' left in urldata.h (in the ssl_config_data
    struct). That field, certverifyresult, is used to store the response
    code from TLS backend code and in the OpenSSL case that function returns
    an actual 'long'.
    
    Closes #20227

    Changed files

    • lib/getinfo.c
    • lib/progress.c
    • lib/rtsp.c
    • lib/setopt.c
    • lib/urldata.h