[tor-commits] [tor] branch main updated: Fix dispatch_cfg_t comment
    gitolite role 
    git at cupani.torproject.org
       
    Wed Jun  1 12:57:38 UTC 2022
    
    
  
This is an automated email from the git hooks/post-receive script.
dgoulet pushed a commit to branch main
in repository tor.
The following commit(s) were added to refs/heads/main by this push:
     new 36c714687b Fix dispatch_cfg_t comment
36c714687b is described below
commit 36c714687ba99b3b9a5737979df4e9c49de03db3
Author: Alex Xu (Hello71) <alex_y_xu at yahoo.ca>
AuthorDate: Tue May 31 16:15:14 2022 -0400
    Fix dispatch_cfg_t comment
---
 src/lib/dispatch/dispatch_cfg_st.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/lib/dispatch/dispatch_cfg_st.h b/src/lib/dispatch/dispatch_cfg_st.h
index 636f2e6df5..503d13e010 100644
--- a/src/lib/dispatch/dispatch_cfg_st.h
+++ b/src/lib/dispatch/dispatch_cfg_st.h
@@ -24,9 +24,9 @@ struct dispatch_cfg_t {
   struct smartlist_t *type_by_msg;
   /** A list of channel_id_t (cast to void*), indexed by msg_t. */
   struct smartlist_t *chan_by_msg;
-  /** A list of dispatch_rcv_t, indexed by msg_type_id_t. */
+  /** A list of dispatch_typefns_t, indexed by msg_type_id_t. */
   struct smartlist_t *fns_by_type;
-  /** A list of dispatch_typefns_t, indexed by msg_t. */
+  /** A list of dispatch_rcv_t, indexed by msg_t. */
   struct smartlist_t *recv_by_msg;
 };
 
-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
    
    
More information about the tor-commits
mailing list