fix segfault from infinite recursive loop

This commit is contained in:
Jude Nelson
2017-02-20 20:57:05 -05:00
parent 9e6950ed50
commit 7a979fb3ec

View File

@@ -379,7 +379,7 @@ def is_revoke_expired( entry, config_path=CONFIG_PATH ):
"""
Is a revoke expired?
"""
return is_revoke_expired(entry, config_path=CONFIG_PATH)
return is_update_expired(entry, config_path=CONFIG_PATH)
def cleanup_preorder_queue(path=DEFAULT_QUEUE_PATH, config_path=CONFIG_PATH):