summaryrefslogtreecommitdiff
path: root/src/or/dirvote.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/dirvote.c')
-rw-r--r--src/or/dirvote.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/or/dirvote.c b/src/or/dirvote.c
index 611ee4e704..07bbb159b9 100644
--- a/src/or/dirvote.c
+++ b/src/or/dirvote.c
@@ -1568,6 +1568,7 @@ dirvote_perform_vote(void)
networkstatus_t *ns;
char *contents;
pending_vote_t *pending_vote;
+ time_t now = time(NULL);
int status;
const char *msg = "";
@@ -1575,6 +1576,9 @@ dirvote_perform_vote(void)
if (!cert || !key) {
log_warn(LD_NET, "Didn't find key/certificate to generate v3 vote");
return -1;
+ } else if (now < cert->expires) {
+ log_warn(LD_NET, "Can't generate v3 vote with expired certificate");
+ return -1;
}
if (!(ns = dirserv_generate_networkstatus_vote_obj(key, cert)))
return -1;