Author: stefan2
Date: Sun Feb 20 05:37:45 2011
New Revision: 1072501
URL: http://svn.apache.org/viewvc?rev=1072501&view=rev
Log:
Fix spelling of SVN_DEFAULT_COMPRESS[S]ION_LEVEL and compress[s]ion.
* subversion/include/svn_delta.h (SVN_DEFAULT_COMPRESSION_LEVEL),
subversion/include/svn_ra_svn.h (svn_ra_svn_create_conn),
subversion/libsvn_delta/svndiff.c (svn_txdelta_to_svndiff,
svn_txdelta_to_svndiff2),
subversion/libsvn_ra_svn/marshal.c (svn_ra_svn_create_conn),
subversion/mod_dav_svn/mod_dav_svn.c (svn__compression_level),
subversion/svnserve/main.c (svnserve__options, main)
subversion/svnserve/server.h (serve_params_t): COMPRESSSION -> COMPRESSION
Found by: jcorvel
Modified:
subversion/trunk/subversion/include/svn_delta.h
subversion/trunk/subversion/include/svn_ra_svn.h
subversion/trunk/subversion/libsvn_delta/svndiff.c
subversion/trunk/subversion/libsvn_ra_svn/marshal.c
subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c
subversion/trunk/subversion/svnserve/main.c
subversion/trunk/subversion/svnserve/server.h
Modified: subversion/trunk/subversion/include/svn_delta.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_delta.h?rev=1072501&r1=1072500&r2=1072501&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_delta.h (original)
+++ subversion/trunk/subversion/include/svn_delta.h Sun Feb 20 05:37:45 2011
@@ -62,7 +62,7 @@ extern "C" {
* should be between 0 and 9, with higher numbers resulting in
* better compression rates but slower operation.
*/
-#define SVN_DEFAULT_COMPRESSSION_LEVEL 5
+#define SVN_DEFAULT_COMPRESSION_LEVEL 5
/**
* Get libsvn_delta version information.
@@ -482,7 +482,7 @@ svn_txdelta_to_svndiff3(svn_txdelta_wind
apr_pool_t *pool);
/** Similar to svn_txdelta_to_svndiff3, but always using the SVN default
- * compression level (@ref SVN_DEFAULT_COMPRESSSION_LEVEL).
+ * compression level (@ref SVN_DEFAULT_COMPRESSION_LEVEL).
*
* @since New in 1.4.
*/
Modified: subversion/trunk/subversion/include/svn_ra_svn.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_ra_svn.h?rev=1072501&r1=1072500&r2=1072501&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_ra_svn.h (original)
+++ subversion/trunk/subversion/include/svn_ra_svn.h Sun Feb 20 05:37:45 2011
@@ -174,7 +174,7 @@ svn_ra_svn_create_conn2(apr_socket_t *so
apr_pool_t *pool);
/** Similar to @ref svn_ra_svn_create_conn2() but uses default
- * compression level (@ref SVN_DEFAULT_COMPRESSSION_LEVEL) for network
+ * compression level (@ref SVN_DEFAULT_COMPRESSION_LEVEL) for network
* transmissions.
*
* @deprecated Provided for backward compatibility with the 1.6 API.
Modified: subversion/trunk/subversion/libsvn_delta/svndiff.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_delta/svndiff.c?rev=1072501&r1=1072500&r2=1072501&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_delta/svndiff.c (original)
+++ subversion/trunk/subversion/libsvn_delta/svndiff.c Sun Feb 20 05:37:45 2011
@@ -309,7 +309,7 @@ svn_txdelta_to_svndiff2(svn_txdelta_wind
apr_pool_t *pool)
{
svn_txdelta_to_svndiff3(handler, handler_baton, output,
- svndiff_version, SVN_DEFAULT_COMPRESSSION_LEVEL,
pool);
+ svndiff_version, SVN_DEFAULT_COMPRESSION_LEVEL,
pool);
}
void
@@ -319,7 +319,7 @@ svn_txdelta_to_svndiff(svn_stream_t *out
void **handler_baton)
{
svn_txdelta_to_svndiff3(handler, handler_baton, output,
- 0, SVN_DEFAULT_COMPRESSSION_LEVEL, pool);
+ 0, SVN_DEFAULT_COMPRESSION_LEVEL, pool);
}
Modified: subversion/trunk/subversion/libsvn_ra_svn/marshal.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_svn/marshal.c?rev=1072501&r1=1072500&r2=1072501&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_svn/marshal.c (original)
+++ subversion/trunk/subversion/libsvn_ra_svn/marshal.c Sun Feb 20 05:37:45 2011
@@ -99,7 +99,7 @@ svn_ra_svn_conn_t *svn_ra_svn_create_con
apr_pool_t *pool)
{
return svn_ra_svn_create_conn2(sock, in_file, out_file,
- SVN_DEFAULT_COMPRESSSION_LEVEL, pool);
+ SVN_DEFAULT_COMPRESSION_LEVEL, pool);
}
svn_error_t *svn_ra_svn_set_capabilities(svn_ra_svn_conn_t *conn,
Modified: subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c?rev=1072501&r1=1072500&r2=1072501&view=diff
==============================================================================
--- subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c (original)
+++ subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c Sun Feb 20 05:37:45
2011
@@ -103,7 +103,7 @@ static authz_svn__subreq_bypass_func_t p
/* The compression level we will pass to svn_txdelta_to_svndiff3()
* for wire-compression */
-static int svn__compression_level = SVN_DEFAULT_COMPRESSSION_LEVEL;
+static int svn__compression_level = SVN_DEFAULT_COMPRESSION_LEVEL;
static int
init(apr_pool_t *p, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s)
Modified: subversion/trunk/subversion/svnserve/main.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svnserve/main.c?rev=1072501&r1=1072500&r2=1072501&view=diff
==============================================================================
--- subversion/trunk/subversion/svnserve/main.c (original)
+++ subversion/trunk/subversion/svnserve/main.c Sun Feb 20 05:37:45 2011
@@ -194,7 +194,7 @@ static const apr_getopt_option_t svnserv
" "
"[0 .. no compression, 5 .. default, \n"
" "
- " 9 .. maximum compresssion]")},
+ " 9 .. maximum compression]")},
{"memory-cache-size", 'M', 1,
N_("size of the extra in-memory cache in MB used to\n"
" "
@@ -451,7 +451,7 @@ int main(int argc, const char *argv[])
params.cfg = NULL;
params.pwdb = NULL;
params.authzdb = NULL;
- params.compression_level = SVN_DEFAULT_COMPRESSSION_LEVEL;
+ params.compression_level = SVN_DEFAULT_COMPRESSION_LEVEL;
params.log_file = NULL;
params.username_case = CASE_ASIS;
params.memory_cache_size = (apr_uint64_t)-1;
Modified: subversion/trunk/subversion/svnserve/server.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svnserve/server.h?rev=1072501&r1=1072500&r2=1072501&view=diff
==============================================================================
--- subversion/trunk/subversion/svnserve/server.h (original)
+++ subversion/trunk/subversion/svnserve/server.h Sun Feb 20 05:37:45 2011
@@ -115,7 +115,7 @@ typedef struct serve_params_t {
/* Data compression level to reduce for network traffic. If this
is 0, no compression should be applied and the protocol may
fall back to svndiff "version 0" bypassing zlib entirely.
- Defaults to SVN_DEFAULT_COMPRESSSION_LEVEL. */
+ Defaults to SVN_DEFAULT_COMPRESSION_LEVEL. */
int compression_level;
} serve_params_t;