Skip to content
Snippets Groups Projects
Commit f1c47586 authored by Peter Palfrader's avatar Peter Palfrader Committed by Nick Mathewson
Browse files

tor-gencert: Fix a minor formatting issue in an error message (re: #4574)

parent d951e204
No related branches found
No related tags found
No related merge requests found
......@@ -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")) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment