diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-04-01 09:54:20 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-04-01 09:54:20 -0400 |
commit | c66dd179800416d8bcc1aa4a9abdcf1861a7c6c6 (patch) | |
tree | 728ae954124abd68feade9b88e79165655739814 /src/or/config.c | |
parent | 162fd52b405918a78bf25d7e043edd16a53a2e0f (diff) | |
download | tor-c66dd179800416d8bcc1aa4a9abdcf1861a7c6c6.tar.gz tor-c66dd179800416d8bcc1aa4a9abdcf1861a7c6c6.zip |
Drop support for --digests
This is a fair amount of maintainance burden, and doesn't help much
more than the git microversion.
Closes ticket 14742.
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/or/config.c b/src/or/config.c index 68157a1146..f6c32d6cd0 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1909,7 +1909,6 @@ static const struct { { "-h", 0 }, { "--help", 0 }, { "--list-torrc-options", 0 }, - { "--digests", 0 }, { "--nt-service", 0 }, { "-nt-service", 0 }, { NULL, 0 }, @@ -4386,13 +4385,6 @@ options_init_from_torrc(int argc, char **argv) exit(0); } - if (config_line_find(cmdline_only_options, "--digests")) { - printf("Tor version %s.\n",get_version()); - printf("%s", libor_get_digests()); - printf("%s", tor_get_digests()); - exit(0); - } - if (config_line_find(cmdline_only_options, "--library-versions")) { printf("Tor version %s. \n", get_version()); printf("Library versions\tCompiled\t\tRuntime\n"); |