aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/protover_rust.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-08-03 08:55:17 -0400
committerNick Mathewson <nickm@torproject.org>2020-08-03 08:55:17 -0400
commitefc969e86214fc53d3387c646ef0eab80ce15981 (patch)
treebcf64d7b1842f0741826c97ff63e8dae2e140b4d /src/core/or/protover_rust.c
parentd1fda62d11139830b0d81d56d0dfd372237d0be6 (diff)
downloadtor-efc969e86214fc53d3387c646ef0eab80ce15981.tar.gz
tor-efc969e86214fc53d3387c646ef0eab80ce15981.zip
Rename protover_contains_long_protocol_names to protover_list_is_invalid
This is an automated commit, generated by this command: ./scripts/maint/rename_c_identifier.py \ protover_contains_long_protocol_names protover_list_is_invalid
Diffstat (limited to 'src/core/or/protover_rust.c')
-rw-r--r--src/core/or/protover_rust.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/or/protover_rust.c b/src/core/or/protover_rust.c
index f44746b6da..99f3aa7f69 100644
--- a/src/core/or/protover_rust.c
+++ b/src/core/or/protover_rust.c
@@ -25,7 +25,7 @@ int protover_contains_long_protocol_names_(const char *s);
* name longer than MAX_PROTOCOL_NAME_LENGTH, and false otherwise.
*/
bool
-protover_contains_long_protocol_names(const char *s)
+protover_list_is_invalid(const char *s)
{
return protover_contains_long_protocol_names_(s) != 0;
}