Author: rinrab
Date: Tue May 27 21:17:55 2025
New Revision: 1925878
URL: http://svn.apache.org/viewvc?rev=1925878&view=rev
Log:
On the 'utf8-cmdline-prototype' branch: following up to r1925877 and 1925876:
Call svn_opt__process_target_array() with correct arguments.
Modified:
subversion/branches/utf8-cmdline-prototype/subversion/libsvn_subr/deprecated.c
Modified:
subversion/branches/utf8-cmdline-prototype/subversion/libsvn_subr/deprecated.c
URL:
http://svn.apache.org/viewvc/subversion/branches/utf8-cmdline-prototype/subversion/libsvn_subr/deprecated.c?rev=1925878&r1=1925877&r2=1925878&view=diff
==============================================================================
---
subversion/branches/utf8-cmdline-prototype/subversion/libsvn_subr/deprecated.c
(original)
+++
subversion/branches/utf8-cmdline-prototype/subversion/libsvn_subr/deprecated.c
Tue May 27 21:17:55 2025
@@ -822,8 +822,8 @@ svn_opt_args_to_target_array4(apr_array_
APR_ARRAY_PUSH(utf8_input_targets, const char *) = os->argv[os->ind];
}
- return svn_error_trace(svn_opt__process_target_array(targets_p, os,
- known_targets, pool));
+ return svn_error_trace(svn_opt__process_target_array(
+ targets_p, utf8_input_targets, known_targets, pool));
}
svn_error_t *
@@ -846,8 +846,8 @@ svn_opt_args_to_target_array3(apr_array_
APR_ARRAY_PUSH(utf8_input_targets, const char *) = utf8_target;
}
- return svn_error_trace(svn_opt__process_target_array(targets_p, os,
- known_targets, pool));
+ return svn_error_trace(svn_opt__process_target_array(
+ targets_p, utf8_input_targets, known_targets, pool));
}
svn_error_t *