tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 23819d3a662635f0c7a28c33c145cf65839e056c
parent 0c4e3b6b5064e699ff5879ee99a09e0d27e50442
Author: JeremyRand <biolizard89@gmail.com>
Date:   Sun, 27 Oct 2019 03:06:19 +0000

Bug 19859: Set arg to const

Diffstat:
Msrc/feature/control/control_fmt.c | 2+-
Msrc/feature/control/control_fmt.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/feature/control/control_fmt.c b/src/feature/control/control_fmt.c @@ -167,7 +167,7 @@ circuit_describe_status_for_controller(origin_circuit_t *circ) /** Allocate and return a description of <b>conn</b>'s current status. */ char * -entry_connection_describe_status_for_controller(entry_connection_t *conn) +entry_connection_describe_status_for_controller(const entry_connection_t *conn) { char *rv; smartlist_t *descparts = smartlist_new(); diff --git a/src/feature/control/control_fmt.h b/src/feature/control/control_fmt.h @@ -17,7 +17,7 @@ int write_stream_target_to_buf(entry_connection_t *conn, char *buf, void orconn_target_get_name(char *buf, size_t len, or_connection_t *conn); char *circuit_describe_status_for_controller(origin_circuit_t *circ); -char *entry_connection_describe_status_for_controller( +char *entry_connection_describe_status_for_controller(const entry_connection_t *conn); MOCK_DECL(const char *, node_describe_longname_by_id,(const char *id_digest));