Author: ivan
Date: Tue Apr 21 14:24:00 2026
New Revision: 1933207
Log:
Mark local functions as static.
* subversion/libsvn_subr/win32_crypto.c
(encrypt_data, decrypt_data): Mark as static.
Modified:
subversion/trunk/subversion/libsvn_subr/win32_crypto.c
Modified: subversion/trunk/subversion/libsvn_subr/win32_crypto.c
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/win32_crypto.c Tue Apr 21
14:05:10 2026 (r1933206)
+++ subversion/trunk/subversion/libsvn_subr/win32_crypto.c Tue Apr 21
14:24:00 2026 (r1933207)
@@ -53,7 +53,7 @@ static const WCHAR description[] = L"aut
/* Return a copy of ORIG, encrypted using the Windows CryptoAPI and
allocated from POOL. */
-const svn_string_t *
+static const svn_string_t *
encrypt_data(const svn_string_t *orig,
apr_pool_t *pool)
{
@@ -75,7 +75,7 @@ encrypt_data(const svn_string_t *orig,
/* Return a copy of CRYPTED, decrypted using the Windows CryptoAPI and
allocated from POOL. */
-const svn_string_t *
+static const svn_string_t *
decrypt_data(const svn_string_t *crypted,
apr_pool_t *pool)
{