summaryrefslogtreecommitdiff
path: root/src/rust
diff options
context:
space:
mode:
authorcypherpunks <cypherpunks@torproject.org>2018-10-23 17:12:13 +0000
committerNick Mathewson <nickm@torproject.org>2018-10-24 09:02:04 -0400
commitbfab7b9d353227104c3f323c964b0e80fdf60d31 (patch)
treed4bbebe46fe65f88743f1113f2240da0c9d0696a /src/rust
parent98e28efa8c2558e408313254c161a3ff9b371f27 (diff)
downloadtor-bfab7b9d353227104c3f323c964b0e80fdf60d31.tar.gz
tor-bfab7b9d353227104c3f323c964b0e80fdf60d31.zip
rust/tor_log: fix C_RUST_COUPLED documentation
This file was moved in 97b15a1d7c51764888d2172711e3f3a71fb01916 and moved again in e7f5f48d68553206b95cbb4f610702c887500124.
Diffstat (limited to 'src/rust')
-rw-r--r--src/rust/tor_log/tor_log.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rust/tor_log/tor_log.rs b/src/rust/tor_log/tor_log.rs
index 5231d0c631..757c74ff49 100644
--- a/src/rust/tor_log/tor_log.rs
+++ b/src/rust/tor_log/tor_log.rs
@@ -89,15 +89,15 @@ pub mod log {
use super::LogSeverity;
use libc::{c_char, c_int};
- /// Severity log types. These mirror definitions in /src/common/torlog.h
- /// C_RUST_COUPLED: src/common/log.c, log domain types
+ /// Severity log types. These mirror definitions in src/lib/log/log.h
+ /// C_RUST_COUPLED: src/lib/log/log.c, log domain types
extern "C" {
static LOG_WARN_: c_int;
static LOG_NOTICE_: c_int;
}
- /// Domain log types. These mirror definitions in /src/common/torlog.h
- /// C_RUST_COUPLED: src/common/log.c, log severity types
+ /// Domain log types. These mirror definitions in src/lib/log/log.h
+ /// C_RUST_COUPLED: src/lib/log/log.c, log severity types
extern "C" {
static LD_NET_: u32;
static LD_GENERAL_: u32;