Handle CMD_KEY_EXPIRATION in ntmain.c switch statement

This fixes a compilation warning on windows.

Bug not in any released Tor.
This commit is contained in:
Nick Mathewson 2017-08-04 12:00:51 -04:00
parent b2a7e8df90
commit 32b4fd5be9

View File

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