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

Builder curl-unthreaded-solaris10-i386 Build #16606

Build In Progress:

[waiting for Lock]

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionaafbe089a88c42bf81ff8cf868f20263661ad3e4
Changes9 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 16606 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision aafbe089a88c42bf81ff8cf868f20263661ad3e4 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. Joshua Rogers
  3. Stefan Eissing
  4. Viktor Szakats

Timing:

StartFri May 15 19:57:13 2026
Elapsed1 hrs, 33 mins, 27 secs

All Changes:

:

  1. Change #267201

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Fri 15 May 2026 10:25:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 88bb7f885fe8b3fb39b8b1de6106a05732bb9af5

    Comments

    rustls: error on CURLOPT_CRLFILE with native CA store
    Closes #21614

    Changed files

    • lib/vtls/rustls.c
  2. Change #267208

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 15 May 2026 11:44:20
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 913529411514d864ee2f377379d872dcab2c8317

    Comments

    urlapi: deny hostnames with more than one trailing dot
    Or consisting of just a single dot.
    
    Such names cannot be resolved with DNS.
    
    While they *can* still be resolved with /etc/hosts or --resolve tricks,
    they easily cause internal problems because their trailing dots.
    
    Let's not allow them anymore.
    
    Closes #21622

    Changed files

    • lib/urlapi.c
    • tests/http/test_17_ssl_use.py
    • tests/libtest/lib1560.c
  3. Change #267215

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 15 May 2026 11:49:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision eb9b253d660db179b1aadd77c425de5c71f18526

    Comments

    libssh: add support for SHA256 host public keys
    Reported-by: Joshua Rogers
    Fixes #21605
    
    Closes #21607

    Changed files

    • .github/workflows/windows.yml
    • docs/cmdline-opts/hostpubsha256.md
    • docs/libcurl/opts/CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256.md
    • lib/setopt.c
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • src/tool_getparam.c
    • src/tool_libinfo.c
    • src/tool_libinfo.h
    • tests/data/test3021
    • tests/data/test3022
  4. Change #267216

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 15 May 2026 11:49:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3da249e1f0716c06644ed3522a37a8bf81808012

    Comments

    gsasl: fix potential double free
    Also:
    - require libgsasl 1.6.0+ (2010-12-14) for a `gsasl_finish()` that
      handles a NULL argument.
      Ref: https://gitlab.com/gsasl/gsasl/-/commit/b550032df8488a9ceaa3cfd4c634947d8f219717
    
    Reported-by: Joshua Rogers (Aisle Research)
    
    Closes #21609

    Changed files

    • docs/INTERNALS.md
    • lib/vauth/gsasl.c
  5. Change #267217

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 15 May 2026 11:49:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4780e509aade2b17ef7a7cbf2212288ce88e48d7

    Comments

    tidy-up: prefer "initialize" with a 'z'
    To match the majority of usage in source.
    
    Closes #21618

    Changed files

    • include/curl/curl.h
    • lib/conncache.c
    • lib/conncache.h
    • lib/cshutdn.c
    • lib/cshutdn.h
    • lib/curl_sha512_256.c
    • lib/curl_share.c
    • lib/curlx/strerr.c
    • lib/imap.c
    • lib/pingpong.c
    • lib/pingpong.h
    • lib/pop3.c
    • lib/select.h
    • lib/smtp.c
    • lib/socketpair.h
    • lib/socks_sspi.c
    • lib/strerror.c
    • lib/vauth/digest.c
    • lib/vauth/ntlm.c
    • lib/vauth/ntlm_sspi.c
    • lib/vquic/vquic.c
    • lib/vssh/libssh.c
    • lib/vssh/ssh.h
    • lib/vtls/openssl.c
    • projects/vms/curlmsg.msg
    • src/tool_cfgable.c
    • src/tool_operate.c
    • tests/data/test1538
  6. Change #267219

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 15 May 2026 12:16:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision de28c9cfadc2daaa5db31d42a6186846c530f518

    Comments

    rustls: drop two wrong leftover casts to `ssize_t`
    While both source and target types are already `size_t`.
    
    Spotted by GitHub Code Quality
    
    Follow-up to b7c676d13f0988bde9bb0e4c3cfc688072cdb2e0 #17593
    
    Closes #21625

    Changed files

    • lib/vtls/rustls.c
  7. Change #267223

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 15 May 2026 13:28:03
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 71430e87fd3bcf8960b26325c9dd2b398876c121

    Comments

    strparse: make curlx_str_until() accept zero for 'max'
    When asked to parse for a string with max zero bytes, it will always
    return error and no longer trigger an assert. This saves the caller from
    having to check for this condition.
    
    Closes #21600

    Changed files

    • lib/curlx/strparse.c
  8. Change #267226

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 15 May 2026 13:37:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a15cfeb10057f2462ab2276c7d28aeb8baff9b8e

    Comments

    cookie: compare path case sensitively
    Verify with test 1645
    
    Reported-by: Joshua Rogers
    Closes #21616

    Changed files

    • lib/cookie.c
    • tests/data/Makefile.am
    • tests/data/test1645
  9. Change #267250

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 15 May 2026 16:15:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision aafbe089a88c42bf81ff8cf868f20263661ad3e4

    Comments

    CURLOPT_SHARE: warn about early remove
    Add a warning to removing a SHARE from an EASY handle before it is
    finished.
    
    Closes #21633

    Changed files

    • docs/libcurl/opts/CURLOPT_SHARE.md