Builder curl-threaded-solaris11-sparc Build #4559
Results:
Build successful
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | d29f14b9cf0d38f3887b6eadc71af16903bc7f5b |
| Got Revision | d29f14b9cf0d38f3887b6eadc71af16903bc7f5b |
| Changes | 5 changes |
BuildSlave:
unstable11sReason:
The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris11-sparc' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot/slave/curl-threaded-solaris11-sparc | slave |
| buildername | curl-threaded-solaris11-sparc | Builder |
| buildnumber | 4559 | Build |
| codebase | Build | |
| got_revision | d29f14b9cf0d38f3887b6eadc71af16903bc7f5b | Git |
| osplatform | SPARC | SetPropertyFromCommand Step |
| osrelease | 11 | SetPropertyFromCommand Step |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | d29f14b9cf0d38f3887b6eadc71af16903bc7f5b | Build |
| scheduler | schedule-curl-threaded-solaris11-sparc | Scheduler |
| slavename | unstable11s | BuildSlave |
| workdir | /export/home/buildbot/slave/curl-threaded-solaris11-sparc | slave (deprecated) |
Forced Build Properties:
| Name | Label | Value |
|---|
Responsible Users:
- Daniel Stenbergdaniel@haxx.se
- Stefan Eissingstefan@eissing.org
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Fri Oct 31 17:29:57 2025 |
| End | Fri Oct 31 18:54:31 2025 |
| Elapsed | 1 hrs, 24 mins, 33 secs |
All Changes:
:
Change #247200
Category curl Changed by Stefan Eissing <stefan@eissing.org> Changed at Fri 31 Oct 2025 15:56:58 Repository https://github.com/curl/curl.git Project curl Branch master Revision 1e85cb4b7b88c2b2a21ff425eee071128106b085 Comments
scp/sftp: fix disconnect When a SCP/SFTP connection calls the protocol handler disconnect, it required the connections *and* the easy handles SSH meta data to be present. When the disconnect is called with an admin handle, the easy meta data is not present, which prevented the shutdown to run. The easy meta data is however not necessary to run the shutdown state machine. Calling it with a NULL `sshp` is fine. To avoid any mixups, check `sshp` in state operations that need it. Fixes #19293 Reported-by: And-yW on github Closes #19295
Changed files
- lib/vssh/libssh.c
- lib/vssh/libssh2.c
Change #247204
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Fri 31 Oct 2025 16:21:41 Repository https://github.com/curl/curl.git Project curl Branch master Revision c887a3f2f265b90e326efe140ff97dcd7280e180 Comments
BINDINGS.md: point flaky URL to archive.org To avoid linkcheck CI fails. It was failing regularly in the last months.
Changed files
- docs/BINDINGS.md
Change #247207
Category curl Changed by Daniel Stenberg <daniel@haxx.se> Changed at Fri 31 Oct 2025 16:28:13 Repository https://github.com/curl/curl.git Project curl Branch master Revision 031322385310560ff5143078e9ddd4b434b358ca Comments
RELEASE-NOTES: synced
Changed files
- RELEASE-NOTES
Change #247210
Category curl Changed by Daniel Stenberg <daniel@haxx.se> Changed at Fri 31 Oct 2025 16:44:57 Repository https://github.com/curl/curl.git Project curl Branch master Revision 928363f28ca533d743adcb70597c3e30917c6cbd Comments
examples: consistent variable naming across examples - 'CURL *' handles are called 'curl' - 'CURLM *' handles are called 'multi' - write callbacks are called 'write_cb' - read callbacs are called 'read_cb' - CURLcode variables are called 'res' It makes the examples look and feel more consistent. It allows for easier copy and pasting between examples. Closes #19299
Changed files
- docs/examples/10-at-a-time.c
- docs/examples/anyauthput.c
- docs/examples/cacertinmem.c
- docs/examples/certinfo.c
- docs/examples/chkspeed.c
- docs/examples/crawler.c
- docs/examples/debug.c
- docs/examples/ephiperfifo.c
- docs/examples/evhiperfifo.c
- docs/examples/externalsocket.c
- docs/examples/ftp-delete.c
- docs/examples/ftp-wildcard.c
- docs/examples/ftpget.c
- docs/examples/ftpsget.c
- docs/examples/ftpupload.c
- docs/examples/ftpuploadfrommem.c
- docs/examples/ftpuploadresume.c
- docs/examples/getinmemory.c
- docs/examples/ghiper.c
- docs/examples/hiperfifo.c
- docs/examples/hsts-preload.c
- docs/examples/htmltitle.cpp
- docs/examples/http2-download.c
- docs/examples/http2-pushinmemory.c
- docs/examples/http2-serverpush.c
- docs/examples/http2-upload.c
- docs/examples/httpput.c
- docs/examples/imap-append.c
- docs/examples/imap-multi.c
- docs/examples/log_failed_transfers.c
- docs/examples/multi-app.c
- docs/examples/multi-debugcallback.c
- docs/examples/multi-double.c
- docs/examples/multi-event.c
- docs/examples/multi-formadd.c
- docs/examples/multi-legacy.c
- docs/examples/multi-post.c
- docs/examples/multi-single.c
- docs/examples/multi-uv.c
- docs/examples/pop3-multi.c
- docs/examples/post-callback.c
- docs/examples/postinmemory.c
- docs/examples/sepheaders.c
- docs/examples/sessioninfo.c
- docs/examples/sftpget.c
- docs/examples/sftpuploadresume.c
- docs/examples/shared-connection-cache.c
- docs/examples/smooth-gtk-thread.c
- docs/examples/smtp-authzid.c
- docs/examples/smtp-mail.c
- docs/examples/smtp-multi.c
- docs/examples/smtp-ssl.c
- docs/examples/smtp-tls.c
- docs/examples/synctime.c
- docs/examples/url2file.c
- docs/examples/usercertinmem.c
- docs/examples/websocket-cb.c
- docs/examples/websocket-updown.c
- docs/examples/xmlstream.c
Change #247215
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Fri 31 Oct 2025 17:15:33 Repository https://github.com/curl/curl.git Project curl Branch master Revision d29f14b9cf0d38f3887b6eadc71af16903bc7f5b Comments
tests: replace significant invisible spaces with macros To make them explicit, visible, avoid being accidentally trimmed. Also prevents Git warnings, e.g. on `git am`. Also: - runtests: add support for `%spc%` and `%tab%` macros. - test59: delete non-significant line-ending space. - spacecheck.pl: drop line-ending whitespace exception for tests. Closes #19300
Changed files
- .github/scripts/spacecheck.pl
- docs/tests/FILEFORMAT.md
- tests/data/test1029
- tests/data/test1070
- tests/data/test1185
- tests/data/test136
- tests/data/test1461
- tests/data/test1654
- tests/data/test1664
- tests/data/test17
- tests/data/test188
- tests/data/test189
- tests/data/test1940
- tests/data/test1941
- tests/data/test1942
- tests/data/test1944
- tests/data/test1945
- tests/data/test1946
- tests/data/test1947
- tests/data/test1955
- tests/data/test1958
- tests/data/test2302
- tests/data/test2306
- tests/data/test2400
- tests/data/test2403
- tests/data/test2406
- tests/data/test2500
- tests/data/test2503
- tests/data/test378
- tests/data/test4
- tests/data/test421
- tests/data/test459
- tests/data/test46
- tests/data/test54
- tests/data/test57
- tests/data/test59
- tests/data/test689
- tests/data/test769
- tests/data/test792
- tests/data/test793
- tests/testutil.pm