diff options
author | Chelsea Holland Komlo <me@chelseakomlo.com> | 2018-01-22 18:33:22 -0500 |
---|---|---|
committer | Chelsea Holland Komlo <me@chelseakomlo.com> | 2018-01-22 18:33:22 -0500 |
commit | d0184963f9731bea82db1958c885ea1e7f7c42d1 (patch) | |
tree | 294554d17f90d0a4d495387b4abdb40ab414a5c6 /src/or/main.c | |
parent | 510a91af533afb48f9ad8b64d3d2bc4cd707d9b6 (diff) | |
download | tor-d0184963f9731bea82db1958c885ea1e7f7c42d1.tar.gz tor-d0184963f9731bea82db1958c885ea1e7f7c42d1.zip |
fixups from code review
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/main.c b/src/or/main.c index c19d4f6909..b42b0b6208 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -132,7 +132,7 @@ void evdns_shutdown(int); #ifdef HAVE_RUST // helper function defined in Rust to output a log message indicating if tor is // running with Rust enabled. See src/rust/tor_util -void rust_welcome_string(void); +void rust_log_welcome_string(void); #endif /********* PROTOTYPES **********/ @@ -3283,7 +3283,7 @@ tor_init(int argc, char *argv[]) } #ifdef HAVE_RUST - rust_welcome_string(); + rust_log_welcome_string(); #endif /* defined(HAVE_RUST) */ if (network_init()<0) { |