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

Builder curl-ares-solaris10-sparc Build #3689

Build In Progress:

ETA: 05:57:22 [17 mins, 21 secs]

[waiting for Lock]

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionbedeeaa4a7145cb6dabddf0e4377799f33d1f24b
Changes9 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris10-sparc' 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-unstable10s/slave/curl-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 3689 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision bedeeaa4a7145cb6dabddf0e4377799f33d1f24b Build
scheduler schedule-curl-ares-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. HwangRock
  3. Stefan Eissing
  4. Viktor Szakats
  5. alhudz

Timing:

StartMon Jun 29 21:37:09 2026
Elapsed8 hrs, 2 mins, 52 secs

All Changes:

:

  1. Change #273158

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 29 Jun 2026 11:17:00
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d647b84d53b5ba14ce82b0759c70e962a423c1a4

    Comments

    CREDENTIALS.md: remove comment about emtpy user/pass
    Closes #22212

    Changed files

    • docs/internals/CREDENTIALS.md
  2. Change #273178

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 29 Jun 2026 14:27:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c9d8a6bc1084cae8b9f63a504bdfc7c00230f4ff

    Comments

    mod_curltest: fix compiler warnings
    ```
    mod_curltest.c:331:25: warning: result of comparison of unsigned expression >= 0 is always true [-Wtautological-unsigned-zero-compare]
      331 |           if(chunk_size >= 0) {
          |              ~~~~~~~~~~ ^  ~
    mod_curltest.c:421:9: warning: declaration shadows a local variable [-Wshadow]
      421 |     int i, hd_len = (16 * 1024);
          |         ^
    mod_curltest.c:288:7: note: previous declaration is here
      288 |   int i, chunks = 3, error_bucket = 1;
          |       ^
    mod_curltest.c:501:40: warning: format specifies type 'int' but the argument has type 'unsigned int' [-Wformat]
      500 |                 "error_handler: request cleanup, r->status=%d, aborted=%d, "
          |                                                                        ~~
          |                                                                        %u
      501 |                 "close=%d", r->status, c->aborted, close_conn);
          |                                        ^~~~~~~~~~
    mod_curltest.c:837:1: warning: missing field 'lock' initializer [-Wmissing-field-initializers]
      837 | };
          | ^
    mod_curltest.c:914:43: warning: format specifies type 'int' but the argument has type 'apr_time_t' (aka 'long') [-Wformat]
      914 |     char *v = apr_psprintf(r->pool, "%d", limitrec.duration_sec);
          |                                      ~~   ^~~~~~~~~~~~~~~~~~~~~
          |                                      %ld
    mod_curltest.c:956:16: warning: unused variable 'rv' [-Wunused-variable]
      956 |   apr_status_t rv;
          |                ^~
    ```
    
    Closes #22214

    Changed files

    • tests/http/testenv/mod_curltest/mod_curltest.c
  3. Change #273179

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 29 Jun 2026 14:34:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f3c11692a9881b2d74263e20749ff58da1fd8443

    Comments

    CURLOPT_SSH_*_KEYFILE: used for setting up, then no more
    So changing them after the connection is made still allows libcurl to
    reuse the existing connections.
    
    Reported-by: Bigtang on hackerone
    Closes #22211

    Changed files

    • docs/libcurl/opts/CURLOPT_SSH_PRIVATE_KEYFILE.md
    • docs/libcurl/opts/CURLOPT_SSH_PUBLIC_KEYFILE.md
  4. Change #273216

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 29 Jun 2026 20:04:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2b5911880ba715d10e0a8bf6dc4896b662fedc89

    Comments

    openssl: prefer modern API flavors for `EVP_MD_CTX` new/free
    Available in all supported OpenSSL flavors and versions. They are
    functionally identical to the legacy API calls.
    
    Closes #22219

    Changed files

    • lib/curl_sha512_256.c
    • lib/sha256.c
    • lib/vtls/openssl.c
  5. Change #273240

    Category curl
    Changed by HwangRock <peter9244ohnoyoudont@naver.com>
    Changed at Mon 29 Jun 2026 22:21:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision df350dd0d82cfcca52eef5aa615ad52a6d556c1c

    Comments

    content_encoding: give a clear error on multi-member gzip
    A gzip Content-Encoding response holding more than one gzip member made
    curl decode the first member and then fail the transfer with a bare
    CURLE_WRITE_ERROR and no hint about the cause. Detect the trailing
    member and fail with a message that explains what happened.
    
    Fixes #22156
    Closes #22172

    Changed files

    • lib/content_encoding.c
    • tests/data/Makefile.am
    • tests/data/test2305
  6. Change #273241

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 29 Jun 2026 22:22:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ea71c3b6b60e563651ea8596a975aef0c8199519

    Comments

    openldap: handle Curl_sasl_continue() returns better
    Similar to how it gets treated already in other protocol handlers.
    
    Follow-up to eeca818b1e8d1e61c2d4
    
    Reported-by: Eunsoo Kim
    Closes #22213

    Changed files

    • lib/openldap.c
  7. Change #273242

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 29 Jun 2026 22:23:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7791b1629b16cac4a49d677cbf7c778f4fbaaf0e

    Comments

    CURLSHOPT_(UN)SHARE.md: do not modify shares while in use
    Reported-by: smaeljaish on hackerone
    
    Closes #22217

    Changed files

    • docs/libcurl/opts/CURLSHOPT_SHARE.md
    • docs/libcurl/opts/CURLSHOPT_UNSHARE.md
  8. Change #273243

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 29 Jun 2026 22:24:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8aeef462e391639b621e6adbbd60de6bd77ee43b

    Comments

    config2setopt.c: refactor config2setopts
    Introduce sub functions
    
    Closes #22215

    Changed files

    • src/config2setopts.c
    • src/tool_setopt.c
    • src/tool_setopt.h
    • tests/data/data1402.c
    • tests/data/data1404.c
    • tests/data/data1405.c
    • tests/data/data1406.c
    • tests/data/data1407.c
    • tests/data/data1465.c
  9. Change #273245

    Category curl
    Changed by alhudz <al.hudz.kohnoyoudont@gmail.com>
    Changed at Mon 29 Jun 2026 22:28:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bedeeaa4a7145cb6dabddf0e4377799f33d1f24b

    Comments

    smtp: reject CR and LF in the envelope address
    Verified in test 2110
    
    Closes #22119

    Changed files

    • lib/smtp.c
    • tests/data/Makefile.am
    • tests/data/test2110