commit c3e14a3236c2c7577f0b9425418684fc95f44862
parent 3dc5cce7493dc4914087fd4621939d588ecf1476
Author: Nick Mathewson <nickm@torproject.org>
Date: Wed, 24 Oct 2018 09:02:06 -0400
Merge branch 'maint-0.3.5'
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git 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;