Corrections attached, thanks for the advice!
(please pardon the thread mess, I had mail issues)
Index: subversion/tests/svn_test_main.c
===================================================================
--- subversion/tests/svn_test_main.c (revision 1426301)
+++ subversion/tests/svn_test_main.c (working copy)
@@ -1,5 +1,5 @@
/*
- * tests-main.c: shared main() & friends for SVN test-suite programs
+ * svn_test_main.c: shared main() & friends for SVN test-suite programs
*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
Index: subversion/svnserve/svnserve.c
===================================================================
--- subversion/svnserve/svnserve.c (revision 1426301)
+++ subversion/svnserve/svnserve.c (working copy)
@@ -1,5 +1,5 @@
/*
- * main.c : Main control function for svnserve
+ * svnserve.c : Main control function for svnserve
*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
Index: subversion/svnlook/svnlook.c
===================================================================
--- subversion/svnlook/svnlook.c (revision 1426301)
+++ subversion/svnlook/svnlook.c (working copy)
@@ -1,5 +1,5 @@
/*
- * main.c: Subversion server inspection tool.
+ * svnlook.c: Subversion server inspection tool main file.
*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
Index: subversion/svnsync/svnsync.c
===================================================================
--- subversion/svnsync/svnsync.c (revision 1426301)
+++ subversion/svnsync/svnsync.c (working copy)
@@ -330,7 +330,7 @@ lock_retry_func(void *baton,
/* Acquire a lock (of sorts) on the repository associated with the
* given RA SESSION. This lock is just a revprop change attempt in a
* time-delay loop. This function is duplicated by svnrdump in
- * load_editor.c.
+ * svnrdump/load_editor.c
*/
static svn_error_t *
get_lock(const svn_string_t **lock_string_p,
Index: subversion/svnadmin/svnadmin.c
===================================================================
--- subversion/svnadmin/svnadmin.c (revision 1426301)
+++ subversion/svnadmin/svnadmin.c (working copy)
@@ -1,5 +1,5 @@
/*
- * main.c: Subversion server administration tool.
+ * svnadmin.c: Subversion server administration tool main file.
*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
Index: subversion/svndumpfilter/svndumpfilter.c
===================================================================
--- subversion/svndumpfilter/svndumpfilter.c (revision 1426301)
+++ subversion/svndumpfilter/svndumpfilter.c (working copy)
@@ -1,5 +1,5 @@
/*
- * main.c: Subversion dump stream filtering tool.
+ * svndumpfilter.c: Subversion dump stream filtering tool main file.
*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
Index: subversion/svn/cl.h
===================================================================
--- subversion/svn/cl.h (revision 1426301)
+++ subversion/svn/cl.h (working copy)
@@ -288,13 +288,13 @@ svn_opt_subcommand_t
svn_cl__upgrade;
-/* See definition in main.c for documentation. */
+/* See definition in svn.c for documentation. */
extern const svn_opt_subcommand_desc2_t svn_cl__cmd_table[];
-/* See definition in main.c for documentation. */
+/* See definition in svn.c for documentation. */
extern const int svn_cl__global_options[];
-/* See definition in main.c for documentation. */
+/* See definition in svn.c for documentation. */
extern const apr_getopt_option_t svn_cl__options[];
Index: subversion/svn/svn.c
===================================================================
--- subversion/svn/svn.c (revision 1426301)
+++ subversion/svn/svn.c (working copy)
@@ -1,5 +1,5 @@
/*
- * main.c: Subversion command line client.
+ * svn.c: Subversion command line client main file.
*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
Index: subversion/svnrdump/load_editor.c
===================================================================
--- subversion/svnrdump/load_editor.c (revision 1426301)
+++ subversion/svnrdump/load_editor.c (working copy)
@@ -501,7 +501,8 @@ get_shim_callbacks(struct revision_baton *rb,
/* Acquire a lock (of sorts) on the repository associated with the
* given RA SESSION. This lock is just a revprop change attempt in a
- * time-delay loop. This function is duplicated by svnsync in main.c.
+ * time-delay loop. This function is duplicated by svnsync in
+ * svnsync/svnsync.c
*
* ### TODO: Make this function more generic and
* expose it through a header for use by other Subversion
[[[
Update code comments in a number of files which refer to "main.c", where
the file has been renamed.
Update to comments in subversion/svnsync/svnsync.c and
subversion/svnrdump/load_editor.c which referred to the function
get_lock() being duplicated, where the prototypes differ slightly.
* subversion/svnrdump/load_editor.c:
(get_lock): Change comment to refer to "similar" function.
in subversion/svnsync/svnsync.c
Change comment to fix reference to "main.c"
* subversion/svnsync/svnsync.c:
(get_lock): Change comment to refer to "similar" function.
in subversion/svnsync/svnsync.c
* subversion/tests/svn_test_main.c:
(Opening comment): Fix file name after rename
* subversion/svndumpfilter/svndumpfilter.c:
(Opening comment): Fix file name after rename
* subversion/svn/cl.h:
(svn_cl__cmd_table[]): Fix file name in comment
(svn_cl__global_options[]): Fix file name in comment
(apr_getopt_option_t svn_cl__options[]): Fix file name in comment
* subversion/svn/svn.c:
(Opening comment): Fix file name after rename
* subversion/svnadmin/svnadmin.c:
(Opening comment): Fix file name after rename
* subversion/svnlook/svnlook.c:
(Opening comment): Fix file name after rename
* subversion/svnserve/svnserve.c:
(Opening comment): Fix file name after rename
Patch by: Gabriela Gibson <gabriela.gibson_at_gmail.com>
]]]