tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 32b4fd5be9574a1f17947416889be9067db483b7
parent b2a7e8df900eabe41d6e866f8b66aadd8a0d31d7
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri,  4 Aug 2017 12:00:51 -0400

Handle CMD_KEY_EXPIRATION in ntmain.c switch statement

This fixes a compilation warning on windows.

Bug not in any released Tor.

Diffstat:
Msrc/or/ntmain.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/or/ntmain.c b/src/or/ntmain.c @@ -329,9 +329,10 @@ nt_service_main(void) case CMD_VERIFY_CONFIG: case CMD_DUMP_CONFIG: case CMD_KEYGEN: + case CMD_KEY_EXPIRATION: log_err(LD_CONFIG, "Unsupported command (--list-fingerprint, " - "--hash-password, --keygen, --dump-config, or --verify-config) " - "in NT service."); + "--hash-password, --keygen, --dump-config, --verify-config, " + "or --key-expiration) in NT service."); break; case CMD_RUN_UNITTESTS: default: