svn commit: r1931570 - subversion/trunk/subversion/libsvn_client
| Newsgroups | gmane.comp.version-control.subversion.svn |
|---|---|
| Message-ID | <176952100652.1923019.2023709115633013188@svn02-us-east.apache.org> |
Author: dsahlberg
Date: Tue Jan 27 13:36:46 2026
New Revision: 1931570
Log:
Followup to r1808139, use the allow_unver_obstructions argument in the
call to svn_client_checkout4 instead of hardcoding FALSE.
This was probably missed due to a copy-paste error from svn_client_checkout2.
* subversion/libsvn_client/deprecated.c
(svn_client_checkout3): As above
Discussed on dev@:
https://lists.apache.org/thread/y6pxsq5v7s5ns7c88hd42b5ky9ns8wvb
Modified:
subversion/trunk/subversion/libsvn_client/deprecated.c
Modified: subversion/trunk/subversion/libsvn_client/deprecated.c
==============================================================================
--- subversion/trunk/subversion/libsvn_client/deprecated.c Tue Jan 27 12:45:02 2026 (r1931569)
+++ subversion/trunk/subversion/libsvn_client/deprecated.c Tue Jan 27 13:36:46 2026 (r1931570)
@@ -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));
}