mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-08 17:20:38 -04:00
pullup:
672. [bug] The wrong time was in the "time signed" field when
replying with BADTIME error.
This commit is contained in:
parent
f03aa2d025
commit
49da32935f
2 changed files with 6 additions and 5 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,3 +1,5 @@
|
|||
672. [bug] The wrong time was in the "time signed" field when
|
||||
replying with BADTIME error.
|
||||
|
||||
--- 9.1.0b3 released ---
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
*/
|
||||
|
||||
/*
|
||||
* $Id: tsig.c,v 1.98 2000/12/08 03:10:32 bwelling Exp $
|
||||
* $Id: tsig.c,v 1.98.4.1 2001/01/09 19:36:20 bwelling Exp $
|
||||
* Principal Author: Brian Wellington
|
||||
*/
|
||||
|
||||
|
|
@ -504,10 +504,9 @@ dns_tsig_sign(dns_message_t *msg) {
|
|||
}
|
||||
/* Digest the timesigned and fudge */
|
||||
isc_buffer_clear(&databuf);
|
||||
if (tsig.error != dns_tsigerror_badtime)
|
||||
buffer_putuint48(&databuf, tsig.timesigned);
|
||||
else
|
||||
buffer_putuint48(&databuf, querytsig.timesigned);
|
||||
if (tsig.error == dns_tsigerror_badtime)
|
||||
tsig.timesigned = querytsig.timesigned;
|
||||
buffer_putuint48(&databuf, tsig.timesigned);
|
||||
isc_buffer_putuint16(&databuf, tsig.fudge);
|
||||
isc_buffer_usedregion(&databuf, &r);
|
||||
ret = dst_context_adddata(ctx, &r);
|
||||
|
|
|
|||
Loading…
Reference in a new issue