aboutsummaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2011-11-25 14:16:33 +0100
committerNick Mathewson <nickm@torproject.org>2011-11-25 10:04:41 -0500
commitf1c47586ac2b66e41948f4e25ba1a6b3bccb84d7 (patch)
tree0f0a1c350df31a7aeef046567db5bfa7e131fb5a /src/tools
parentd951e2042654bdd809ba085ec19a18a14cb8f63a (diff)
downloadtor-f1c47586ac2b66e41948f4e25ba1a6b3bccb84d7.tar
tor-f1c47586ac2b66e41948f4e25ba1a6b3bccb84d7.tar.gz
tor-gencert: Fix a minor formatting issue in an error message (re: #4574)
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/tor-gencert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tor-gencert.c b/src/tools/tor-gencert.c
index 974a58bec..57f82b1bc 100644
--- a/src/tools/tor-gencert.c
+++ b/src/tools/tor-gencert.c
@@ -153,7 +153,7 @@ parse_commandline(int argc, char **argv)
}
months_lifetime = atoi(argv[++i]);
if (months_lifetime > 24 || months_lifetime < 0) {
- fprintf(stderr, "Lifetime (in months) was out of range.");
+ fprintf(stderr, "Lifetime (in months) was out of range.\n");
return 1;
}
} else if (!strcmp(argv[i], "-r") || !strcmp(argv[i], "--reuse")) {