aboutsummaryrefslogtreecommitdiff
path: root/src/or/router.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2013-02-01 16:19:02 -0500
committerNick Mathewson <nickm@torproject.org>2013-02-01 16:19:02 -0500
commit7301339e33bd15af777958ed884fbeadc5c0b10f (patch)
tree095e67dd8e0acdb7c4653352484b1c0f088a16b0 /src/or/router.c
parent1dd03fbc77a0280479f81aeccf24aac63c37cd08 (diff)
downloadtor-7301339e33bd15af777958ed884fbeadc5c0b10f.tar.gz
tor-7301339e33bd15af777958ed884fbeadc5c0b10f.zip
fix wide lines from tor_log rename
Diffstat (limited to 'src/or/router.c')
-rw-r--r--src/or/router.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/or/router.c b/src/or/router.c
index 69d346f5ba..db396f0d56 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -406,8 +406,8 @@ init_key_from_file(const char *fname, int generate, int severity)
if (try_locking(get_options(), 0)<0) {
/* Make sure that --list-fingerprint only creates new keys
* if there is no possibility for a deadlock. */
- tor_log(severity, LD_FS, "Another Tor process has locked \"%s\". Not "
- "writing any new keys.", fname);
+ tor_log(severity, LD_FS, "Another Tor process has locked \"%s\". "
+ "Not writing any new keys.", fname);
/*XXXX The 'other process' might make a key in a second or two;
* maybe we should wait for it. */
goto error;
@@ -473,8 +473,8 @@ init_curve25519_keypair_from_file(curve25519_keypair_t *keys_out,
if (try_locking(get_options(), 0)<0) {
/* Make sure that --list-fingerprint only creates new keys
* if there is no possibility for a deadlock. */
- tor_log(severity, LD_FS, "Another Tor process has locked \"%s\". Not "
- "writing any new keys.", fname);
+ tor_log(severity, LD_FS, "Another Tor process has locked \"%s\". "
+ "Not writing any new keys.", fname);
/*XXXX The 'other process' might make a key in a second or two;
* maybe we should wait for it. */
goto error;
@@ -632,13 +632,13 @@ v3_authority_check_key_expiry(void)
if (time_left <= 0) {
tor_log(badness, LD_DIR, "Your v3 authority certificate has expired."
- " Generate a new one NOW.");
+ " Generate a new one NOW.");
} else if (time_left <= 24*60*60) {
- tor_log(badness, LD_DIR, "Your v3 authority certificate expires in %d hours;"
- " Generate a new one NOW.", time_left/(60*60));
+ tor_log(badness, LD_DIR, "Your v3 authority certificate expires in %d "
+ "hours; Generate a new one NOW.", time_left/(60*60));
} else {
- tor_log(badness, LD_DIR, "Your v3 authority certificate expires in %d days;"
- " Generate a new one soon.", time_left/(24*60*60));
+ tor_log(badness, LD_DIR, "Your v3 authority certificate expires in %d "
+ "days; Generate a new one soon.", time_left/(24*60*60));
}
last_warned = now;
}