diff options
Diffstat (limited to 'rpkid/rpki/http.py')
-rw-r--r-- | rpkid/rpki/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/http.py b/rpkid/rpki/http.py index d7690988..f505f72c 100644 --- a/rpkid/rpki/http.py +++ b/rpkid/rpki/http.py @@ -1051,7 +1051,7 @@ class caller(object): try: r_cms = self.proto.cms_msg(DER = r_der) r_msg = r_cms.unwrap((self.server_ta, self.server_cert)) - self.cms_timestamp = r_cms.check_replay(self.cms_timestamp) + self.cms_timestamp = r_cms.check_replay(self.cms_timestamp, self.url) if self.debug: print "<!-- Reply -->" print r_cms.pretty_print_content() |