Author: danielsh
Date: Thu Dec 30 21:18:10 2010
New Revision: 1054001

URL: http://svn.apache.org/viewvc?rev=1054001&view=rev
Log:
Name anonymous structs that my previous glob pattern verb(oversight)ed.

See r1053996 for details.

* subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.c,
  subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.c,
  subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c,
  contrib/server-side/mod_dontdothat/mod_dontdothat.c,
  contrib/server-side/svnstsw/src/main.c,
  contrib/server-side/svnstsw/src/fso_is_changeable.c,
  tools/client-side/svnmucc/svnmucc.c:
    As above.

Modified:
    subversion/trunk/contrib/server-side/mod_dontdothat/mod_dontdothat.c
    subversion/trunk/contrib/server-side/svnstsw/src/fso_is_changeable.c
    subversion/trunk/contrib/server-side/svnstsw/src/main.c
    
subversion/trunk/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c
    
subversion/trunk/subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.c
    
subversion/trunk/subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.c
    subversion/trunk/tools/client-side/svnmucc/svnmucc.c

Modified: subversion/trunk/contrib/server-side/mod_dontdothat/mod_dontdothat.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/contrib/server-side/mod_dontdothat/mod_dontdothat.c?rev=1054001&r1=1054000&r2=1054001&view=diff
==============================================================================
--- subversion/trunk/contrib/server-side/mod_dontdothat/mod_dontdothat.c 
(original)
+++ subversion/trunk/contrib/server-side/mod_dontdothat/mod_dontdothat.c Thu 
Dec 30 21:18:10 2010
@@ -34,7 +34,7 @@
 
 module AP_MODULE_DECLARE_DATA dontdothat_module;
 
-typedef struct {
+typedef struct dontdothat_config_rec {
   const char *config_file;
   const char *base_path;
   int no_replay;
@@ -62,7 +62,7 @@ static const command_rec dontdothat_cmds
   { NULL }
 };
 
-typedef enum {
+typedef enum parse_state_t {
   STATE_BEGINNING,
   STATE_IN_UPDATE,
   STATE_IN_SRC_PATH,
@@ -70,7 +70,7 @@ typedef enum {
   STATE_IN_RECURSIVE
 } parse_state_t;
 
-typedef struct {
+typedef struct dontdothat_filter_ctx {
   /* Set to TRUE when we determine that the request is safe and should be
    * allowed to continue. */
   svn_boolean_t let_it_go;

Modified: subversion/trunk/contrib/server-side/svnstsw/src/fso_is_changeable.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/contrib/server-side/svnstsw/src/fso_is_changeable.c?rev=1054001&r1=1054000&r2=1054001&view=diff
==============================================================================
--- subversion/trunk/contrib/server-side/svnstsw/src/fso_is_changeable.c 
(original)
+++ subversion/trunk/contrib/server-side/svnstsw/src/fso_is_changeable.c Thu 
Dec 30 21:18:10 2010
@@ -40,7 +40,7 @@
 
 #include <svnstsw/fso_is_changeable.h>
 
-typedef struct {
+typedef struct search_replace_t {
     const char* search;
     _Bool match_end;
     _Bool match_previous_slash;

Modified: subversion/trunk/contrib/server-side/svnstsw/src/main.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/contrib/server-side/svnstsw/src/main.c?rev=1054001&r1=1054000&r2=1054001&view=diff
==============================================================================
--- subversion/trunk/contrib/server-side/svnstsw/src/main.c (original)
+++ subversion/trunk/contrib/server-side/svnstsw/src/main.c Thu Dec 30 21:18:10 
2010
@@ -115,7 +115,7 @@ static const mode_t Svnstsw_umask = SVNS
  * @brief Structure holding the values passed in via the command-line
  * arguments.
  */
-typedef struct {
+typedef struct svnstsw_args_t {
     /**
      * @brief whether @p svnserve should be passed the @p --read-only
      * command-line argument

Modified: 
subversion/trunk/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c?rev=1054001&r1=1054000&r2=1054001&view=diff
==============================================================================
--- 
subversion/trunk/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c 
(original)
+++ 
subversion/trunk/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c 
Thu Dec 30 21:18:10 2010
@@ -457,7 +457,7 @@ svn_error_t *svn_swig_pl_callback_thunk(
 /*** Editor Wrapping ***/
 
 /* this could be more perlish */
-typedef struct {
+typedef struct item_baton {
     SV *editor;     /* the editor handling the callbacks */
     SV *baton;      /* the dir/file baton (or NULL for edit baton) */
 } item_baton;
@@ -1343,7 +1343,7 @@ apr_pool_t *svn_swig_pl_make_pool(SV *ob
 
 /* stream interpolability with io::handle */
 
-typedef struct  {
+typedef struct io_baton_t {
     SV *obj;
     IO *io;
 } io_baton_t;

Modified: 
subversion/trunk/subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.c?rev=1054001&r1=1054000&r2=1054001&view=diff
==============================================================================
--- 
subversion/trunk/subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.c 
(original)
+++ 
subversion/trunk/subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.c 
Thu Dec 30 21:18:10 2010
@@ -1474,7 +1474,7 @@ static svn_error_t *type_conversion_erro
 /*** Editor Wrapping ***/
 
 /* this baton is used for the editor, directory, and file batons. */
-typedef struct {
+typedef struct item_baton {
   PyObject *editor;     /* the editor handling the callbacks */
   PyObject *baton;      /* the dir/file baton (or NULL for edit baton) */
 } item_baton;

Modified: 
subversion/trunk/subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.c?rev=1054001&r1=1054000&r2=1054001&view=diff
==============================================================================
--- 
subversion/trunk/subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.c 
(original)
+++ 
subversion/trunk/subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.c 
Thu Dec 30 21:18:10 2010
@@ -1012,7 +1012,7 @@ c2r_svn_string(void *value, void *ctx)
   return c2r_string2(s->data);
 }
 
-typedef struct {
+typedef struct prop_hash_each_arg_t {
   apr_array_header_t *array;
   apr_pool_t *pool;
 } prop_hash_each_arg_t;
@@ -1576,19 +1576,19 @@ svn_swig_rb_hash_to_apr_hash_merge_range
 
 
 /* callback */
-typedef struct {
+typedef struct callback_baton_t {
   VALUE pool;
   VALUE receiver;
   ID message;
   VALUE args;
 } callback_baton_t;
 
-typedef struct {
+typedef struct callback_rescue_baton_t {
   svn_error_t **err;
   VALUE pool;
 } callback_rescue_baton_t;
 
-typedef struct {
+typedef struct callback_handle_error_baton_t {
   callback_baton_t *callback_baton;
   callback_rescue_baton_t *rescue_baton;
 } callback_handle_error_baton_t;
@@ -1675,7 +1675,7 @@ invoke_callback_handle_error(VALUE baton
 
 
 /* svn_delta_editor_t */
-typedef struct {
+typedef struct item_baton {
   VALUE editor;
   VALUE baton;
 } item_baton;

Modified: subversion/trunk/tools/client-side/svnmucc/svnmucc.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/tools/client-side/svnmucc/svnmucc.c?rev=1054001&r1=1054000&r2=1054001&view=diff
==============================================================================
--- subversion/trunk/tools/client-side/svnmucc/svnmucc.c (original)
+++ subversion/trunk/tools/client-side/svnmucc/svnmucc.c Thu Dec 30 21:18:10 
2010
@@ -136,7 +136,7 @@ commit_callback(const svn_commit_info_t 
   return SVN_NO_ERROR;
 }
 
-typedef enum {
+typedef enum action_code_t {
   ACTION_MV,
   ACTION_MKDIR,
   ACTION_CP,


Reply via email to