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

Builder curl-unthreaded-solaris10-i386 Build #16554

Build In Progress:

ETA: 19:08:52 [24 secs]

[waiting for Lock]

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionad1fcd6111990fee9e7734a30e13815a93102699
Changes8 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git  
    1. - no logs -
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 slave
buildername curl-unthreaded-solaris10-i386 Builder
buildnumber 16554 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision ad1fcd6111990fee9e7734a30e13815a93102699 Build
scheduler schedule-curl-unthreaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing
  3. Viktor Szakats

Timing:

StartTue Apr 21 16:43:40 2026
Elapsed2 hrs, 24 mins, 47 secs

All Changes:

:

  1. Change #265075

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Apr 2026 08:33:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4e0bfd8cf73603697ddad5d25e946e9f53d6831a

    Comments

    mprintf: simplify parsefmt
    - split out parse_flags() and parse_conversion() to reduce complexity
      from 57 to 30.
    
    Closes #21391

    Changed files

    • lib/mprintf.c
  2. Change #265077

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Apr 2026 08:35:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 19695e815c51f8830fc542557a50f6a7100cd862

    Comments

    tool_operate: split create_single into smaller sub functions
    Reduces complexity from 58 => 32.
    
    Closes #21389

    Changed files

    • src/tool_operate.c
  3. Change #265097

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 21 Apr 2026 10:09:58
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5ff7f773106176d60d6f3386017b58b3b01edb41

    Comments

    wolfssl: fix `-Wmissing-prototypes`
    Seen with unity, H3, wolfssl with `HAVE_EX_DATA`.
    
    Fixing:
    ```
    lib/vtls/wolfssl.c:412:10: error: no previous prototype for function 'Curl_wssl_cache_session' [-Wmissing-prototypes]
      412 | CURLcode Curl_wssl_cache_session(struct Curl_cfilter *cf,
          |          ^
    lib/vtls/wolfssl.c:412:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
      412 | CURLcode Curl_wssl_cache_session(struct Curl_cfilter *cf,
          | ^
          | static
    1 error generated.
    ```
    
    Follow-up to cc5c1553fbdb8c1391d0cf81134583ee32da64d4 #19852
    
    Closes #21392

    Changed files

    • lib/vtls/wolfssl.h
  4. Change #265115

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Apr 2026 14:22:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2e3607034dcbbc97aa587d878b866a2af6b99c99

    Comments

    parsedate: refactor
    - introduce 'struct when' to hold the parser result
    - initwhen() initializes a 'struct when'
    - datestring() parses strings
    - datenum() parses numbers
    - datecheck() does some final checks
    - tzadjust() adds the time zone offset
    - convert math to 64 bit, squeeze into time_t only in the last step,
      mktimet() does the time_t storing
    
    Closes #21394

    Changed files

    • lib/parsedate.c
    • tests/libtest/lib517.c
  5. Change #265117

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 21 Apr 2026 14:35:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8eb3cb75a3e1244be4e2b20a3509d923f2144bd0

    Comments

    misc: fix code quality findings
    - httpsrr: drop redundant checks.
      Follow-up to 809dda3a37363160d4bf5ea2dafa0bcb8188a3f0 #21354
    - httpsrr.h: drop obsolete comment.
      Follow-up to 2b3dfb4ad47ec05efad9af930c47968a49916999 #21175
    - ws: drop redundant check in `curl_ws_start_frame()`.
      Follow-up to 37cecfc7b91118f116cf16af8f50a18b15d00d51 #17683
    - ws: fix typo in comment.
    - tool_operate: fix VMS build. (broken since 2019-07-20, v7.66.0)
      Follow-up to b88940850002a3f1c25bc6488b95ad30eb80d696 #3804
    
    Pointed out by Copilot Code Quality
    
    Closes #21393

    Changed files

    • lib/httpsrr.c
    • lib/httpsrr.h
    • lib/ws.c
    • src/tool_operate.c
  6. Change #265127

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Apr 2026 15:21:10
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4f7e323b29fbc8dfb818c686d9f644660ebe3178

    Comments

    mprintf: OR the flags
    As 'flags' may already have been set to something when
    parse_conversion() is called, make sure to only OR the new flags.
    
    Follow-up to 4e0bfd8cf73603697ddad5d25e94
    
    Closes #21398

    Changed files

    • lib/mprintf.c
  7. Change #265128

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Apr 2026 15:21:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4daf483b5be8a6524f9aa4135a1dcae0a9c8ec38

    Comments

    lib557: add tests with flags AND conversion specifier
    Remove superfluous and never-built test code for systems with 16-bit and
    64-bit ints and 16-bit longs, as we don't know any such.

    Changed files

    • tests/libtest/lib557.c
  8. Change #265131

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 21 Apr 2026 15:58:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ad1fcd6111990fee9e7734a30e13815a93102699

    Comments

    async-ares: fix query counter handling
    When starting an c-ares query, the provided callback may be invoked
    right away, leading to a decrement of `queries_ongoing`. Increment
    the counter *before* call c-ares. Otherwise, the `async->done` bit
    is not properly set.
    
    Closes #21399

    Changed files

    • lib/asyn-ares.c
    • lib/asyn-thrdd.c