commit 32b4fd5be9574a1f17947416889be9067db483b7 Author: Nick Mathewson nickm@torproject.org Date: Fri Aug 4 12:00:51 2017 -0400
Handle CMD_KEY_EXPIRATION in ntmain.c switch statement
This fixes a compilation warning on windows.
Bug not in any released Tor. --- src/or/ntmain.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/or/ntmain.c b/src/or/ntmain.c index d0d5276c4..7a85ba970 100644 --- 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: