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

Builder curl-unthreaded-solaris10-i386 Build #15905

Build In Progress:

[waiting for Lock]

SourceStamp:

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

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 15905 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision a49e4e3d16991465144558f405b2d7972824abb0 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. TheBitBrine

Timing:

StartSun Oct 26 20:07:29 2025
Elapsed5 hrs, 31 mins, 7 secs

All Changes:

:

  1. Change #246796

    Category curl
    Changed by TheBitBrine <blacknomex08ohnoyoudont@gmail.com>
    Changed at Sun 26 Oct 2025 10:59:20
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a49e4e3d16991465144558f405b2d7972824abb0

    Comments

    pop3: fix CAPA response termination detection
    The code was checking if a line starts with '.', which would
    incorrectly match capability names starting with dots. Per RFC 2449,
    the terminator must be a line containing only a single dot.
    
    RFC 2449 also explicitly excludes '.' from valid capability name
    starting characters, so this is purely theoretical, but the code
    should match the spec.
    
    Changed to check for exact match: line length of 3 with '.\r' or
    length 2 with '.\n' to handle both CRLF and LF-only servers.
    
    (Mistake detected with ZeroPath)
    
    Fixes #19228
    Reported-by: Joshua Rogers
    Closes #19245

    Changed files

    • lib/pop3.c