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

Builder curl-ares-solaris10-i386 Build #4438

Build In Progress:

ETA: 00:20:36 [4 mins, 53 secs]

[waiting for Lock]

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision2864e995435e71a152a9ae090a72df6833025a01
Changes25 changes

BuildSlave:

unstable10x

Reason:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. A Johnston
  2. Daniel Stenberg
  3. Stefan Eissing
  4. Viktor Szakats
  5. Yedaya Katsman
  6. alhudz
  7. renovate[bot]

Timing:

StartTue Jun 9 19:15:31 2026
Elapsed5 hrs, 11 secs

All Changes:

:

  1. Change #270011

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 09 Jun 2026 09:20:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a2b943b115ab55e25464b555aed746b2e67c8dfe

    Comments

    digest: escape control codes too
    Since the username is decoded when used and control codes are accepted
    in HTTP usernames in general, the username encoding for the Digest auth
    needs to percent encode such bytes.
    
    Verified by test 3221
    
    Reported-by: Trail of Bits
    Closes #21915

    Changed files

    • lib/vauth/digest.c
    • tests/data/Makefile.am
    • tests/data/test3221
  2. Change #270012

    Category curl
    Changed by Yedaya Katsman <yedaya.kaohnoyoudont@gmail.com>
    Changed at Tue 09 Jun 2026 09:23:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7b9d74abf6fb446d5c388c75755100998c67944a

    Comments

    resolve: Mention in error that IP address is expected
    If you try using a DNS name like connect-to supports it can be confusing that
    it is illegal. Also make it a bit more readable
    
    Closes #21913

    Changed files

    • lib/dnscache.c
  3. Change #270022

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 10:24:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision cb4465bfe67ec9c75722ea10923a6a75005e8f68

    Comments

    pytest: close file handles after use (cont.), and tidy-ups
    - dante.py, dnsd.py, sshd.py: drop redundant conditions.
      Spotted in sshd by GitHub Code Quality.
    - curl.py: comment out `if` to silence CodeQL warning.
    
    Reported by GitHub CodeQL
    
    Follow-up to 8145476d5dd97d0ec704e9ea65b2f2028b8a945c #21916
    
    Closes #21917

    Changed files

    • tests/http/testenv/caddy.py
    • tests/http/testenv/client.py
    • tests/http/testenv/curl.py
    • tests/http/testenv/dante.py
    • tests/http/testenv/dnsd.py
    • tests/http/testenv/h2o.py
    • tests/http/testenv/nghttpx.py
    • tests/http/testenv/sshd.py
    • tests/http/testenv/vsftpd.py
  4. Change #270023

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 10:24:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b9b2c0cbb854908a2580e4424b0315983f7cf3da

    Comments

    docs: returned header size reflects HTTP/1-style format
    Ref: #21889
    
    Closes #21912

    Changed files

    • docs/cmdline-opts/write-out.md
    • docs/libcurl/opts/CURLINFO_HEADER_SIZE.md
  5. Change #270034

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 09 Jun 2026 11:00:01
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fb9a520873133e369fa86ef63b4e4f0fd2fc1f68

    Comments

    peer.h: fix typo in comment
    Closes #21920

    Changed files

    • lib/peer.h
  6. Change #270035

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 09 Jun 2026 11:05:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 849317ff5c5a5e13f50ec3d001e46ddffa77d8a4

    Comments

    ws: make pong sending lazy
    Do not send PONG frames unless there is sufficient space left in the
    websocket send buffer. A server might be lazy in reading our data and
    intermediary PONG frames can be skipped by a client (RFC 6455, ch.
    5.5.3).
    
    Add test case measuring no real RSS increase on a server blasting with
    PING frames.
    
    Closes #21911

    Changed files

    • lib/ws.c
    • tests/http/test_20_websockets.py
  7. Change #270042

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 11:07:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 952b04474cb1fc18bf66ddf3b41587535b71ca1d

    Comments

    tidy-up: miscellaneous
    - badwords: replace stray synonyms with 'null-terminator'.
    - tests/FILEFORMAT.md: tidy up feature descriptions.
    - printf: replace stray `%i` masks with `%d` for consistency.
    - pytest: add comments for empty excepts to try silencing GitHub CodeQL
      warnings.
    - tool1394, unit1675: merge nested `if`s.
    - dnscache: fix typo in comment.
    - fix whitespace, indent and newlines.
    
    Closes #21921

    Changed files

    • docs/CODE_REVIEW.md
    • docs/examples/evhiperfifo.c
    • docs/internals/DYNBUF.md
    • docs/libcurl/curl_mprintf.md
    • docs/libcurl/opts/CURLOPT_DOH_URL.md
    • docs/tests/FILEFORMAT.md
    • include/curl/curl.h
    • lib/cf-haproxy.c
    • lib/cf-socket.c
    • lib/dnscache.c
    • lib/doh.c
    • lib/progress.c
    • lib/rand.c
    • lib/rand.h
    • lib/tftp.c
    • lib/urlapi.c
    • lib/vssh/libssh2.c
    • lib/vtls/apple.c
    • lib/vtls/openssl.c
    • m4/curl-compilers.m4
    • scripts/badwords.txt
    • tests/http/test_05_errors.py
    • tests/http/testenv/curl.py
    • tests/http/testenv/ws_echo_server.py
    • tests/libtest/lib530.c
    • tests/libtest/lib582.c
    • tests/libtest/lib758.c
    • tests/server/sockfilt.c
    • tests/tunit/tool1394.c
    • tests/unit/unit1655.c
    • tests/unit/unit1675.c
  8. Change #270043

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 09 Jun 2026 11:11:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e66b81a53283100b0d53c840844d3865b3eba951

    Comments

    cookie: tailmatch the domains for secure override
    If a SECURE cookie is set for a sub-domain (`example.com`) and is then
    attempted to get set again for more specific part of that domain
    (`www.example.com`) without the SECURE property, the second occurance
    should not be allowed.
    
    Reported-by: Trail of Bits
    
    Verified by test 3305
    Closes #21910

    Changed files

    • lib/cookie.c
    • tests/data/Makefile.am
    • tests/data/test3305
  9. Change #270044

    Category curl
    Changed by Yedaya Katsman <yedaya.kaohnoyoudont@gmail.com>
    Changed at Tue 09 Jun 2026 11:12:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision feb609f28bc038b158d6e5f00e2aa30473b31d6e

    Comments

    cf-socket: store errno from do_connect in ctx->error
    This fixes a misleading log in verbose mode when ipv6 connectivity isn't
    available, presumably also in other cases:
    
    ```
    * Immediate connect fail for 2a00:1450:4028:806::200e: Network is unreachable
    * connect to 2a00:1450:4028:806::200e port 443 from :: port 0 failed: Success
    ```
    
    Closes #21914

    Changed files

    • lib/cf-socket.c
  10. Change #270058

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 12:30:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4aa8cc3c4ad567ba5e96d9901ff22238fbe01a0c

    Comments

    pytest: fix remaining code checker warnings
    - curl.py: delete commented no-op code.
    - certs.py, curl.py: narrow down exceptions to fix:
      Except block handles 'BaseException'
    - test_20_websockets: add comment to empty except branch.
    
    Reported by GitHub CodeQL
    
    Closes #21924

    Changed files

    • tests/http/test_20_websockets.py
    • tests/http/testenv/certs.py
    • tests/http/testenv/curl.py
  11. Change #270061

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 12:30:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bbb226b22603cf52e5997bfc82db3d3aba46ee34

    Comments

    unit1675: fix potential memory leak on dynbuf fail path
    Spotted by GitHub Code Quality
    
    Closes #21922

    Changed files

    • tests/unit/unit1675.c
  12. Change #270063

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 12:33:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9dcc57b801385fc598c2a658d83bdef68904a050

    Comments

    pytest: add comment to empty except branch
    To silence GitHub CodeQL.
    
    Follow-up to 4aa8cc3c4ad567ba5e96d9901ff22238fbe01a0c #21924

    Changed files

    • tests/http/testenv/curl.py
  13. Change #270073

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 12:52:08
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 847aac066d45f0b79c96f76ea3f1c891978f1c43

    Comments

    tidy-up: use uppercase `TRUE`/`FALSE` where missing
    Keep it only in external API calls and C++ code.
    
    Also:
    - curlx/fopen: replace with `!!`.
    
    Spotted by GitHub Code Quality in cf-socket.c.
    
    Closes #21925

    Changed files

    • lib/cf-socket.c
    • lib/curlx/fopen.c
    • lib/http_aws_sigv4.c
    • lib/imap.c
    • lib/vtls/vtls.c
    • src/tool_cb_wrt.c
    • src/tool_doswin.c
    • src/tool_writeout.c
    • src/tool_writeout_json.c
    • src/var.c
    • tests/libtest/lib1565.c
    • tests/libtest/lib2700.c
    • tests/libtest/lib3102.c
    • tests/server/dnsd.c
    • tests/server/rtspd.c
    • tests/server/sockfilt.c
    • tests/server/socksd.c
    • tests/server/sws.c
    • tests/server/tftpd.c
    • tests/unit/unit1607.c
    • tests/unit/unit1609.c
    • tests/unit/unit1979.c
    • tests/unit/unit3205.c
  14. Change #270078

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 13:24:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 056dcd9e71fcdce8b123de7ac4f43fafb1ccadcb

    Comments

    pytest: use `Optional[]`, adjust whitespace
    Reported by GitHub Code Quality
    
    Closes #21928

    Changed files

    • tests/http/testenv/curl.py
  15. Change #270079

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 13:24:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision cb4b3e75e808c6527e85d31a64a8ded421d85279

    Comments

    smbserver: check impacket presence differently
    To silence ruff and GitHub CodeQL warnings.
    
    Closes #21929

    Changed files

    • tests/smbserver.py
  16. Change #270082

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 09 Jun 2026 13:34:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c7cba2fd2dfe7826484d99ead7c5fd925aa3d56f

    Comments

    sigv4: URL encode the user name in the header
    - split into sub functions
    - add 'aws-sigv4' as keyword for many tests
    
    Verify with test 3222
    
    Reported-by: Trail of Bits
    Closes #21923

    Changed files

    • lib/http_aws_sigv4.c
    • tests/data/Makefile.am
    • tests/data/test1933
    • tests/data/test1934
    • tests/data/test1935
    • tests/data/test1936
    • tests/data/test1937
    • tests/data/test1938
    • tests/data/test1955
    • tests/data/test1956
    • tests/data/test1957
    • tests/data/test1959
    • tests/data/test1970
    • tests/data/test1971
    • tests/data/test1972
    • tests/data/test1973
    • tests/data/test1974
    • tests/data/test1975
    • tests/data/test1976
    • tests/data/test1978
    • tests/data/test3222
  17. Change #270087

    Category curl
    Changed by alhudz <al.hudz.kohnoyoudont@gmail.com>
    Changed at Tue 09 Jun 2026 13:56:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 62b118cf22d88d8d3962d41fd6757e635c70b166

    Comments

    http-proxy: verify CONNECT response headers
    Verifed by test 2107
    
    Closes #21927

    Changed files

    • lib/cf-h1-proxy.c
    • tests/data/Makefile.am
    • tests/data/test2107
  18. Change #270109

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 14:34:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e37417e0213c4a5a226c20859720b8aba8dac03f

    Comments

    psl: require libpsl 0.16.0 (2016-12-10) or greater
    Debian Stretch offers 0.17.0.
    
    Ref: https://github.com/rockdaboot/libpsl/releases/tag/libpsl-0.16.0
    Ref: https://sources.debian.org/src/libpsl/
    
    Closes #21933

    Changed files

    • docs/INTERNALS.md
    • lib/psl.c
  19. Change #270110

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Tue 09 Jun 2026 14:34:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d8c97b021b8b23be4dd5baf0ebade5823de01c21

    Comments

    GHA: update dependency openssl/openssl to v4.0.1
    Closes #21934

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux.yml
  20. Change #270111

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 14:37:36
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 59213abfb2fdac9936595330c37e722dd952b01b

    Comments

    tidy-up: drop redundant `!= NULL` syntax
    Where missed by checksrc.
    
    Closes #21932

    Changed files

    • docs/examples/crawler.c
    • lib/asyn-ares.c
    • lib/cfilters.c
    • lib/curl_addrinfo.c
    • lib/curl_sha512_256.c
    • lib/fake_addrinfo.c
    • lib/formdata.c
    • lib/http2.c
    • lib/if2ip.c
    • lib/ldap.c
    • lib/memdebug.c
    • lib/openldap.c
    • lib/psl.c
    • lib/transfer.c
    • lib/urlapi.c
    • lib/vauth/vauth.c
    • lib/version.c
    • lib/vquic/cf-ngtcp2.c
    • lib/vssh/libssh2.c
    • lib/vtls/keylog.c
    • lib/vtls/schannel.c
    • lib/vtls/schannel_verify.c
    • lib/vtls/wolfssl.c
    • src/tool_doswin.c
    • src/tool_vms.c
    • tests/libtest/lib2302.c
    • tests/libtest/lib2700.c
    • tests/unit/unit1396.c
    • tests/unit/unit1602.c
    • tests/unit/unit1616.c
    • tests/unit/unit1676.c
    • tests/unit/unit3200.c
  21. Change #270112

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 14:37:36
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 014be82a66f62972a68c4c9ae5300edc84e9b0df

    Comments

    tidy-up: drop redundant `== NULL` syntax
    Where missed by checksrc.
    
    Closes #21935

    Changed files

    • docs/examples/htmltitle.cpp
    • lib/cfilters.h
    • lib/easy.c
    • lib/ftplistparser.c
    • lib/multi.c
    • lib/pingpong.c
    • lib/url.c
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vtls/rustls.c
    • src/tool_doswin.c
    • tests/libtest/lib1536.c
    • tests/unit/README.md
    • tests/unit/unit1300.c
    • tests/unit/unit1304.c
    • tests/unit/unit1309.c
    • tests/unit/unit1605.c
    • tests/unit/unit1620.c
    • tests/unit/unit2601.c
  22. Change #270161

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 09 Jun 2026 16:44:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4ead4285a6af5d5645d4ad6e17a4df40ab53e297

    Comments

    tests: enhance names, remove duplicates
    - test 1030: remove, duplicate of 154
    - test 1105: make name unique
    - test 161: make name reflect what it tests
    - test 2074: correct the name
    - test 310: improve name
    - test 358: correct the name
    - test 409: removed, duplicate of 401
    - test 472: clarify the test name (how it differs from 439)
    - test 1509: update name
    - test 527: duplicate of 526
    - test 758: separate the name from 530
    - test 611: duplicate of 608, remove
    - test 639: adjust the name
    - test 688: minor name tweak to clarify
    - test 708: enhance name
    - test 800/847: clarify the names
    - test 1520: dedupe the name
    - test 962: enhance name
    - test 1196/2203: enhanced names
    - test 1211: name tweak
    - test 1256/1257: enhance the names
    - test 1483: fix name
    - test 1541: fix name
    - test 1553: fix name
    - test 1609: removed, exact duplicate of 1607
    - test 2200: fix name
    - test 3031: corret the name
    - test 3016/3203: fix names and keywords
    - test 3201/3220: enhance names
    - test 3212: fix name
    - add missing FILE keywords
    - drop FAILURE as keyword
    
    Closes #21936

    Changed files

    • tests/data/Makefile.am
    • tests/data/test1007
    • tests/data/test1030
    • tests/data/test1034
    • tests/data/test1035
    • tests/data/test1042
    • tests/data/test1059
    • tests/data/test1063
    • tests/data/test1084
    • tests/data/test1085
    • tests/data/test1086
    • tests/data/test1096
    • tests/data/test1099
    • tests/data/test1105
    • tests/data/test111
    • tests/data/test1112
    • tests/data/test1120
    • tests/data/test113
    • tests/data/test114
    • tests/data/test115
    • tests/data/test1152
    • tests/data/test116
    • tests/data/test117
    • tests/data/test118
    • tests/data/test119
    • tests/data/test1196
    • tests/data/test1208
    • tests/data/test1209
    • tests/data/test1211
    • tests/data/test1234
    • tests/data/test1236
    • tests/data/test1238
    • tests/data/test125
    • tests/data/test1256
    • tests/data/test1257
    • tests/data/test1409
    • tests/data/test1410
    • tests/data/test1422
    • tests/data/test1423
    • tests/data/test1447
    • tests/data/test1453
    • tests/data/test1469
    • tests/data/test1471
    • tests/data/test1472
    • tests/data/test1483
    • tests/data/test1509
    • tests/data/test1515
    • tests/data/test1516
    • tests/data/test1520
    • tests/data/test1541
    • tests/data/test1553
    • tests/data/test1609
    • tests/data/test161
    • tests/data/test162
    • tests/data/test19
    • tests/data/test190
    • tests/data/test20
    • tests/data/test201
    • tests/data/test205
    • tests/data/test207
    • tests/data/test2074
    • tests/data/test21
    • tests/data/test2200
    • tests/data/test2203
    • tests/data/test221
    • tests/data/test223
    • tests/data/test225
    • tests/data/test226
    • tests/data/test229
    • tests/data/test23
    • tests/data/test256
    • tests/data/test283
    • tests/data/test289
    • tests/data/test29
    • tests/data/test293
    • tests/data/test295
    • tests/data/test30
    • tests/data/test3016
    • tests/data/test302
    • tests/data/test303
    • tests/data/test3031
    • tests/data/test305
    • tests/data/test308
    • tests/data/test310
    • tests/data/test315
    • tests/data/test3201
    • tests/data/test3203
    • tests/data/test321
    • tests/data/test3212
    • tests/data/test3217
    • tests/data/test3218
    • tests/data/test322
    • tests/data/test3220
    • tests/data/test323
    • tests/data/test324
    • tests/data/test332
    • tests/data/test358
    • tests/data/test36
    • tests/data/test37
    • tests/data/test38
    • tests/data/test390
    • tests/data/test393
    • tests/data/test394
    • tests/data/test402
    • tests/data/test403
    • tests/data/test404
    • tests/data/test405
    • tests/data/test409
    • tests/data/test41
    • tests/data/test419
    • tests/data/test472
    • tests/data/test504
    • tests/data/test507
    • tests/data/test527
    • tests/data/test538
    • tests/data/test594
    • tests/data/test604
    • tests/data/test605
    • tests/data/test606
    • tests/data/test607
    • tests/data/test609
    • tests/data/test611
    • tests/data/test615
    • tests/data/test620
    • tests/data/test621
    • tests/data/test622
    • tests/data/test623
    • tests/data/test626
    • tests/data/test628
    • tests/data/test629
    • tests/data/test630
    • tests/data/test631
    • tests/data/test632
    • tests/data/test639
    • tests/data/test656
    • tests/data/test688
    • tests/data/test702
    • tests/data/test703
    • tests/data/test704
    • tests/data/test705
    • tests/data/test708
    • tests/data/test75
    • tests/data/test758
    • tests/data/test800
    • tests/data/test803
    • tests/data/test847
    • tests/data/test852
    • tests/data/test855
    • tests/data/test856
    • tests/data/test87
    • tests/data/test94
    • tests/data/test962
    • tests/data/test99
  23. Change #270164

    Category curl
    Changed by A Johnston <ajohnston54637ohnoyoudont@gmail.com>
    Changed at Tue 09 Jun 2026 16:51:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 084ceb66018e514eb33233fb42b3d62cae77384f

    Comments

    hsts: duplicate live HSTS data in curl_easy_duphandle
    Verified by test 1922
    
    Closes #21809

    Changed files

    • docs/libcurl/curl_easy_duphandle.md
    • lib/easy.c
    • lib/hsts.c
    • lib/hsts.h
    • tests/data/Makefile.am
    • tests/data/test1922
    • tests/libtest/Makefile.inc
    • tests/libtest/lib1922.c
  24. Change #270165

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 09 Jun 2026 16:58:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ce53f90f2046e63b89c53473e654793d0a705a19

    Comments

    RELEASE-NOTES: synced

    Changed files

    • RELEASE-NOTES
  25. Change #270169

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 18:06:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2864e995435e71a152a9ae090a72df6833025a01

    Comments

    smbserver: update internal id generation for Python 3
    Also:
    - make next id based on highest in list + 1.
      (was: last id in list + 1)
    - unfold a line.
    
    Spotted by GitHub Code Quality
    
    Ref: https://portingguide.readthedocs.io/en/latest/dicts.html?highlight=keys
    
    Closes #21937

    Changed files

    • tests/smbserver.py