mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
Bug 19859: Set arg to const
This commit is contained in:
parent
0c4e3b6b50
commit
23819d3a66
@ -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();
|
||||
|
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user