Author: svn-role
Date: Thu Mar 5 04:00:05 2026
New Revision: 1932168
Log:
Merge r1931570 from trunk:
* r1931570
Forward the allow_unver_obstructions argument from the deprecated function.
Justification:
Without this, svn_client_checkout3 doesn't care about the argument and the
docstrings doesn't match implementation (see the r1931298 group).
Votes:
+1: dsahlberg, kotkov, rinrab
Modified:
subversion/branches/1.15.x/ (props changed)
subversion/branches/1.15.x/STATUS
subversion/branches/1.15.x/subversion/libsvn_client/deprecated.c
Modified: subversion/branches/1.15.x/STATUS
==============================================================================
--- subversion/branches/1.15.x/STATUS Thu Mar 5 02:36:34 2026
(r1932167)
+++ subversion/branches/1.15.x/STATUS Thu Mar 5 04:00:05 2026
(r1932168)
@@ -76,12 +76,3 @@ Veto-blocked changes:
Approved changes:
=================
-
- * r1931570
- Forward the allow_unver_obstructions argument from the deprecated function.
- Justification:
- Without this, svn_client_checkout3 doesn't care about the argument and the
- docstrings doesn't match implementation (see the r1931298 group).
- Votes:
- +1: dsahlberg, kotkov, rinrab
-
Modified: subversion/branches/1.15.x/subversion/libsvn_client/deprecated.c
==============================================================================
--- subversion/branches/1.15.x/subversion/libsvn_client/deprecated.c Thu Mar
5 02:36:34 2026 (r1932167)
+++ subversion/branches/1.15.x/subversion/libsvn_client/deprecated.c Thu Mar
5 04:00:05 2026 (r1932168)
@@ -2683,7 +2683,7 @@ svn_client_checkout3(svn_revnum_t *resul
return svn_error_trace(svn_client_checkout4(
result_rev, URL, path,
peg_revision, revision, depth,
- ignore_externals, FALSE, NULL,
+ ignore_externals, allow_unver_obstructions, NULL,
svn_tristate_unknown, ctx, pool));
}