aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2022-05-31 16:15:14 -0400
committerAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2022-05-31 16:15:14 -0400
commit36c714687ba99b3b9a5737979df4e9c49de03db3 (patch)
tree80e19754e436f95606b83ef05ef627f550498e1c /src
parent69e3b8bb843aaab65ec3a740348f5481bac13513 (diff)
downloadtor-36c714687ba99b3b9a5737979df4e9c49de03db3.tar.gz
tor-36c714687ba99b3b9a5737979df4e9c49de03db3.zip
Fix dispatch_cfg_t comment
Diffstat (limited to 'src')
-rw-r--r--src/lib/dispatch/dispatch_cfg_st.h4
1 files 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;
};