Builder curl-ares-solaris10-i386 Build #4450
Build In Progress:
ETA: 23:53:12 [4 mins, 19 secs]
[waiting for Lock]SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | 0ffab25b6c9f59223079e3d85edfb5553d397651 |
| Changes | 11 changes |
BuildSlave:
unstable10xReason:
The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris10-i386' triggered this build
Steps and Logfiles:
-
- - no logs -
-
- - no logs -
-
- - no logs -
-
- - no logs -
-
- - no logs -
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot/slave/curl-ares-solaris10-i386 | slave |
| buildername | curl-ares-solaris10-i386 | Builder |
| buildnumber | 4450 | Build |
| codebase | Build | |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | 0ffab25b6c9f59223079e3d85edfb5553d397651 | 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:
| Name | Label | Value |
|---|
Responsible Users:
- Daniel Stenbergdaniel@haxx.se
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Sun Jun 14 21:05:35 2026 |
| Elapsed | 2 hrs, 43 mins, 17 secs |
All Changes:
:
Change #270906
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Sun 14 Jun 2026 14:17:07 Repository https://github.com/curl/curl.git Project curl Branch master Revision fe2df80a5ae8a9afba0eb0601f7aea34ee76fde2 Comments
socket: use name `sockerr` for socket error variables Also: - add comment explaining a `sockerr = errno` (vs. `SOCKERRNO`) assigment. Closes #21998
Changed files
- lib/asyn-thrdd.c
- lib/cf-socket.c
- lib/ftp.c
- lib/socketpair.c
- lib/telnet.c
- lib/tftp.c
- tests/libtest/first.h
- tests/server/dnsd.c
- tests/server/mqttd.c
- tests/server/rtspd.c
- tests/server/sockfilt.c
- tests/server/socksd.c
- tests/server/sws.c
- tests/server/tftpd.c
- tests/server/util.c
Change #270907
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Sun 14 Jun 2026 14:17:27 Repository https://github.com/curl/curl.git Project curl Branch master Revision ba16b832213661a17887e15f9d7dc0899ebdd834 Comments
telnet: drop an `int` cast no longer necessary Spotted-by GitHub Code Quality Follow-up to c5637baa06046d317c383d420f6cbc9ddb3b0870 Follow-up to 83a5e390654fb1e77c7c5d7bd32ba147ff022cbd Closes #22002
Changed files
- lib/telnet.c
Change #270908
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Sun 14 Jun 2026 14:17:27 Repository https://github.com/curl/curl.git Project curl Branch master Revision c61f007a73e27f9f32d6b3f5d88d4aba9d7854d6 Comments
krb5_sspi: fix error message on `DecryptMessage()` fail Spotted by GitHub Code Quality Closes #22003
Changed files
- lib/vauth/krb5_sspi.c
Change #270909
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Sun 14 Jun 2026 14:25:02 Repository https://github.com/curl/curl.git Project curl Branch master Revision 9972f700a852c9a886670b5e4f1f85cad95c19ba Comments
perl: switch from backticks to `qx()` To make it easier to find external command invocation in the source. Also drop backticks from a comment. To find external command invocations in Perl code use: ```sh git grep -E "((exec|qx|open2|open3|system)\(|open\(.+-\|)" $(<perlfiles>) ``` Refs: https://perldoc.perl.org/functions/qx https://perldoc.perl.org/perlop#Simpler-Quote-Like-Operators Closes #21994
Changed files
- .github/scripts/randcurl.pl
- scripts/checksrc.pl
- scripts/mdlinkcheck
- scripts/mk-ca-bundle.pl
- scripts/randdisable
- scripts/release-notes.pl
- tests/appveyor.pm
- tests/azure.pm
- tests/devtest.pl
- tests/processhelp.pm
- tests/runner.pm
- tests/runtests.pl
- tests/servers.pm
- tests/sshhelp.pm
- tests/sshserver.pl
- tests/testcurl.pl
- tests/testutil.pm
Change #270910
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Sun 14 Jun 2026 14:25:02 Repository https://github.com/curl/curl.git Project curl Branch master Revision d9ea8cdcfabd421160a8ce3950e46f15d44fe469 Comments
tests/servers: do not interpret `unlink()` retval as `errno` In `socksd` and `sws` error messages. Also: - show the messages only if `unlink()` failed. - rename a return code variable and sync a message text for consistency. Ref: https://pubs.opengroup.org/onlinepubs/9699919799/functions/unlink.html Spotted by Copilot in `socksd.c` Bug: https://github.com/curl/curl/pull/21998#discussion_r3409395013 Follow-up to 80eb71a3f5146f2ab5c5f8d8655d6861b5472668 #8687 Closes #22005
Changed files
- tests/server/socksd.c
- tests/server/sws.c
- tests/server/util.c
Change #270930
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Sun 14 Jun 2026 16:16:25 Repository https://github.com/curl/curl.git Project curl Branch master Revision 945938de10e84cc7f9d8b420973d2671524a0f03 Comments
rtspd: sync up sleep loop with sws Check for `!got_exit_signal` as part of the `while()` expression, instead of doing it after calling `curlx_wait_ms()`. To simplify and improve consistency with rest of code. Follow-up to 0653fa107f6fb03555d49da86a1fbfc659873f5b Follow-up to 123c92c904b2f258ae69e211aa2663e80cb5429a Closes #22006
Changed files
- tests/server/rtspd.c
Change #270931
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Sun 14 Jun 2026 16:16:25 Repository https://github.com/curl/curl.git Project curl Branch master Revision 9002d3350cc2086f95c8e850dee3e3ef9d8b11ac Comments
servers: minor socket error handling fixes - sws: fix socket error code in `select()` failure message. Spotted by Copilot Bug: https://github.com/curl/curl/pull/21998#discussion_r3409469444 - sws: do not call `SOCKERRNO` twice on error. - dnsd: do not call `SOCKERRNO` twice on error. - dnsd: replace `goto` with `while()` to sync with rest of code. - dnsd: `sendto()` fail message fixes: - replace `int` cast with `%zu` mask. - drop redundant newline. - show socket error string like rest of code. - report not-fully-sent error separately from socket errors. Closes #22007
Changed files
- tests/server/dnsd.c
- tests/server/sws.c
Change #270944
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Sun 14 Jun 2026 17:49:33 Repository https://github.com/curl/curl.git Project curl Branch master Revision f1b1919bd091e65e67d9e1b680ab76569a8af090 Comments
servers: drop single-use interim result variables Closes #22008
Changed files
- tests/server/mqttd.c
- tests/server/rtspd.c
- tests/server/socksd.c
- tests/server/sws.c
- tests/server/util.c
Change #270948
Category curl Changed by Daniel Stenberg <daniel@haxx.se> Changed at Sun 14 Jun 2026 18:12:33 Repository https://github.com/curl/curl.git Project curl Branch master Revision c4cb67692d4466ba577fcdd9d3eb60cdfe19ba13 Comments
smb: integer overflow proof a size check By using size_t for the vars instead of shorts. Pointed out by Zeropath Closes #22001
Changed files
- lib/smb.c
Change #270950
Category curl Changed by Daniel Stenberg <daniel@haxx.se> Changed at Sun 14 Jun 2026 18:36:13 Repository https://github.com/curl/curl.git Project curl Branch master Revision 5bff1c35f11e2e633459051c23e0ce339bc05b99 Comments
socks_sspi: store socks5_gssapi_enctype Store the unwrapped protection level in `conn->socks5_gssapi_enctype` to prevent the proxy from contuning unprotected. Matches the GSSAPI version of the code. Reported-by: Trail of Bits Closes #22004
Changed files
- lib/socks_sspi.c
Change #270957
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Sun 14 Jun 2026 20:10:28 Repository https://github.com/curl/curl.git Project curl Branch master Revision 0ffab25b6c9f59223079e3d85edfb5553d397651 Comments
tidy-up: miscellaneous - `N byte` -> `N-byte` or `N bytes`. - INTERNALS.md: language tweaks. - schannel: language tweak in comment/error message. - socks_gssapi, socks_sspi: simplify composing an error message. (at a cost of 8 extra constant string bytes.) - m4/curl-compilers.m4: fix typo in link (in comment). - contrithanks.sh: fix indent, drop stray `;` terminator. - lib, src, tests: drop/fix a bunch of badwords. - fix typos in comments. - fix indent, stray spaces. Some of these spotted by GitHub Code Quality and Copilot Closes #22009
Changed files
- docs/INTERNALS.md
- docs/examples/httpput-postfields.c
- docs/libcurl/opts/CURLOPT_INTERLEAVEFUNCTION.md
- lib/altsvc.c
- lib/cf-https-connect.c
- lib/connect.c
- lib/curl_config-cmake.h.in
- lib/curl_endian.c
- lib/curl_ntlm_core.c
- lib/curl_setup.h
- lib/ftp.c
- lib/hsts.c
- lib/ldap.c
- lib/mime.c
- lib/peer.c
- lib/pop3.c
- lib/proxy.c
- lib/proxy.h
- lib/smb.c
- lib/socks.c
- lib/socks_gssapi.c
- lib/socks_sspi.c
- lib/telnet.c
- lib/urlapi.c
- lib/vquic/cf-ngtcp2-proxy.c
- lib/vssh/libssh.c
- lib/vssh/libssh2.c
- lib/vtls/schannel.c
- lib/vtls/vtls.h
- m4/curl-compilers.m4
- projects/OS400/curlmain.c
- scripts/badwords.txt
- scripts/contrithanks.sh
- scripts/top-complexity
- scripts/top-length
- tests/data/test1063
- tests/data/test1130
- tests/data/test1131
- tests/data/test1238
- tests/data/test1349
- tests/data/test1350
- tests/data/test1351
- tests/data/test1352
- tests/data/test1353
- tests/data/test1412
- tests/data/test1513
- tests/data/test1515
- tests/data/test153
- tests/data/test1555
- tests/data/test1628
- tests/data/test1631
- tests/data/test1632
- tests/data/test2045
- tests/data/test2206
- tests/data/test2207
- tests/data/test2302
- tests/data/test2713
- tests/data/test2714
- tests/data/test2715
- tests/data/test284
- tests/data/test286
- tests/data/test388
- tests/data/test399
- tests/data/test741
- tests/data/test743
- tests/data/test744
- tests/data/test830
- tests/data/test831
- tests/data/test832
- tests/data/test844
- tests/data/test845
- tests/data/test849
- tests/data/test856
- tests/data/test876
- tests/data/test877
- tests/data/test878
- tests/data/test889
- tests/data/test890
- tests/data/test893
- tests/data/test932
- tests/data/test933
- tests/data/test934
- tests/data/test948
- tests/data/test949
- tests/data/test954
- tests/ech_tests.sh
- tests/libtest/cli_hx_download.c
- tests/libtest/first.h
- tests/libtest/lib1507.c
- tests/libtest/lib1514.c
- tests/libtest/lib1517.c
- tests/libtest/lib1518.c
- tests/libtest/lib1525.c
- tests/libtest/lib1526.c
- tests/libtest/lib1527.c
- tests/libtest/lib1554.c
- tests/libtest/lib1557.c
- tests/libtest/lib1560.c
- tests/libtest/lib1588.c
- tests/libtest/lib1591.c
- tests/libtest/lib1592.c
- tests/libtest/lib1598.c
- tests/libtest/lib1648.c
- tests/libtest/lib1939.c
- tests/libtest/lib2023.c
- tests/libtest/lib2032.c
- tests/libtest/lib2405.c
- tests/libtest/lib3034.c
- tests/libtest/lib3102.c
- tests/libtest/lib3207.c
- tests/libtest/lib500.c
- tests/libtest/lib508.c
- tests/libtest/lib510.c
- tests/libtest/lib513.c
- tests/libtest/lib514.c
- tests/libtest/lib517.c
- tests/libtest/lib518.c
- tests/libtest/lib525.c
- tests/libtest/lib526.c
- tests/libtest/lib537.c
- tests/libtest/lib539.c
- tests/libtest/lib554.c
- tests/libtest/lib571.c
- tests/libtest/lib578.c
- tests/libtest/lib579.c
- tests/libtest/lib599.c
- tests/libtest/lib643.c
- tests/libtest/lib650.c
- tests/libtest/lib651.c
- tests/libtest/lib652.c
- tests/libtest/lib654.c
- tests/libtest/lib666.c
- tests/libtest/lib667.c
- tests/libtest/lib668.c
- tests/libtest/lib753.c
- tests/libtest/lib758.c
- tests/libtest/testutil.c
- tests/libtest/testutil.h
- tests/processhelp.pm
- tests/runner.pm
- tests/runtests.pl
- tests/server/getpart.c
- tests/server/rtspd.c
- tests/server/sockfilt.c
- tests/server/sws.c
- tests/server/tftpd.c
- tests/server/util.c
- tests/test1222.pl
- tests/testutil.pm
- tests/unit/unit1300.c
- tests/unit/unit1305.c
- tests/unit/unit1603.c
- tests/unit/unit1609.c
- tests/unit/unit1652.c
- tests/unit/unit1661.c
- tests/unit/unit1674.c
- tests/unit/unit3205.c
- tests/unit/unit3300.c