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

Builder curl-ares-solaris11-sparc Build #6083

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisione44f1a1446f8e72573e5a1026807e71a0495f88d
Got Revisione44f1a1446f8e72573e5a1026807e71a0495f88d
Changes1 change

BuildSlave:

unstable11s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris11-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 2 mins, 38 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 6083 Build
codebase Build
got_revision e44f1a1446f8e72573e5a1026807e71a0495f88d Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision e44f1a1446f8e72573e5a1026807e71a0495f88d Build
scheduler schedule-curl-ares-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartThu Jun 18 21:19:57 2026
EndThu Jun 18 21:32:58 2026
Elapsed13 mins, 1 secs

All Changes:

:

  1. Change #271710

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 18 Jun 2026 21:12:17
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e44f1a1446f8e72573e5a1026807e71a0495f88d

    Comments

    smb: constify `strchr()` result variable
    Fixing (as seen with gcc-15 on Ubuntu 26.04):
    ```
    lib/smb.c: In function 'smb_connect':
    lib/smb.c:491:9: error: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
      491 |   slash = strchr(user, '/');
          |         ^
    lib/smb.c:493:11: error: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
      493 |     slash = strchr(user, '\\');
          |           ^
    ```
    Ref: https://github.com/curl/curl/actions/runs/27778098314/job/82195462418?pr=22092
    
    Follow-up to 4e5908306ad5febee88f7eae8ea3b0c41a6b7d84 #20428
    Follow-up to 7dc60bdb90c710c2e36b2d05aa3686ff491a9bbe #20425
    Follow-up to 0e2507a3c65376d6bda860ff20bd94ada9bbb9fd #20421
    
    Cherry-picked from #22092
    
    Closes #22094

    Changed files

    • lib/smb.c