mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-29 05:28:00 +00:00
Reverted accidental bulk commit with log message of "%"
This commit is contained in:
parent
c54091c8ed
commit
08bed4d70a
@ -15,7 +15,7 @@
|
||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: named-checkconf.c,v 1.17 2001/10/02 01:09:03 gson Exp $ */
|
||||
/* $Id: named-checkconf.c,v 1.18 2001/10/02 17:20:41 gson Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
@ -51,8 +51,7 @@ isc_log_t *logc = NULL;
|
||||
|
||||
static void
|
||||
usage(void) {
|
||||
fprintf(stderr, "usage: named-checkconf [-v] [-z] [-t directory] "
|
||||
"[named.conf]\n");
|
||||
fprintf(stderr, "usage: named-checkconf [-v] [-z] [-t directory] [named.conf]\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: named-checkzone.c,v 1.16 2001/10/02 01:09:04 gson Exp $ */
|
||||
/* $Id: named-checkzone.c,v 1.17 2001/10/02 17:20:42 gson Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
@ -60,7 +60,7 @@ dns_zonetype_t zonetype = dns_zone_master;
|
||||
static void
|
||||
usage(void) {
|
||||
fprintf(stderr,
|
||||
"usage: named-checkzone [-dqv] [-c class] zonename filename\n");
|
||||
"usage: named-checkzone [-dqv] [-c class] zonename filename \n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
|
||||
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
|
||||
AC_DIVERT_POP()dnl
|
||||
|
||||
AC_REVISION($Revision: 1.300 $)
|
||||
AC_REVISION($Revision: 1.301 $)
|
||||
|
||||
AC_INIT(lib/dns/name.c)
|
||||
AC_PREREQ(2.13)
|
||||
@ -1450,7 +1450,7 @@ case "$host" in
|
||||
hack_shutup_sigwait=yes
|
||||
hack_shutup_sputaux=yes
|
||||
;;
|
||||
[*-bsdi4.[12]*])
|
||||
[*-bsdi4[12]*])
|
||||
hack_shutup_stdargcast=yes
|
||||
;;
|
||||
*-solaris2.8)
|
||||
|
@ -1,7 +1,7 @@
|
||||
Copyright (C) 2000, 2001 Internet Software Consortium.
|
||||
See COPYRIGHT in the source root or http://isc.org/copyright.html for terms.
|
||||
|
||||
$Id: release,v 1.44 2001/10/02 01:09:05 gson Exp $
|
||||
$Id: release,v 1.45 2001/10/02 17:20:43 gson Exp $
|
||||
|
||||
Preparing a bind9 release
|
||||
|
||||
@ -179,12 +179,12 @@ release.
|
||||
- Sign the distribution files with the ISC signing PGP key
|
||||
and fix the permissions on the signature file:
|
||||
|
||||
pgp -sba bind-9.2.0rc5.tar.gz -u 0x51BAB2ED
|
||||
chmod 644 bind-9.2.0rc5.tar.gz.asc
|
||||
pgp -sba bind-9.2.0rc2.tar.gz -u 0x51BAB2ED
|
||||
chmod 644 bind-9.2.0rc2.tar.gz.asc
|
||||
|
||||
- Verify the PGP signature:
|
||||
|
||||
pgp bind-9.2.0rc5.tar.gz.asc bind-9.2.0rc5.tar.gz
|
||||
pgp bind-9.2.0rc2.tar.gz.asc bind-9.2.0rc2.tar.gz
|
||||
|
||||
(Look for the words "Good signature" in the output.)
|
||||
|
||||
@ -192,7 +192,7 @@ release.
|
||||
|
||||
- Copy the distribution and PGP signature files to the FTP site:
|
||||
|
||||
ver=9.2.0rc5
|
||||
ver=9.2.0rc2
|
||||
ssh -n isrv4.pa.vix.com "mkdir /udir/ftp/isc/bind9/$ver"
|
||||
scp bind-$ver.tar.gz bind-$ver.tar.gz.asc \
|
||||
isrv4.pa.vix.com:/udir/ftp/isc/bind9/$ver
|
||||
|
@ -41,7 +41,7 @@
|
||||
1.2. This document makes use of the EDNS extension mechanisms to add
|
||||
several new extended label types and message options, and the ability to
|
||||
ask multiple questions in a single request.
|
||||
compress
|
||||
|
||||
Expires December 1999 [Page 1]
|
||||
|
||||
INTERNET-DRAFT EDNS1 June 1999
|
||||
|
@ -12,4 +12,28 @@ RBT mark bit (with Brian)
|
||||
Support 64-bit offsets and serials in the journal
|
||||
(RT #124 "journalling with large files)
|
||||
|
||||
Review these changes:
|
||||
|
||||
================
|
||||
cvs diff -r1.106 -r1.107 lib/dns/name.c
|
||||
|
||||
date: 2000/11/14 23:48:02; author: tale; state: Exp; lines: +27 -11
|
||||
|
||||
Bitstring labels *still* suck. They didn't somehow magically get less
|
||||
sucky in the past couple of months. The nerve.
|
||||
|
||||
Anyway, dns_name_split now correctly compacts the preceding bitstring label
|
||||
(if any) when a maximal bitstring is split.
|
||||
|
||||
It also correctly creates the suffix when a maximal bitstring is split.
|
||||
It was doing this incorrectly before, independent of the compaction issue.
|
||||
================
|
||||
cvs diff -r1.93 -r1.94 lib/dns/rbt.c
|
||||
|
||||
date: 2000/11/14 23:51:24; author: tale; state: Exp; lines: +82 -37
|
||||
|
||||
Cope with the possibility that the prefix of a name split within a
|
||||
bitstring label might have been compacted to have fewer labels than
|
||||
what was expected
|
||||
|
||||
review getrrsetbyname() code and docs
|
||||
|
Loading…
x
Reference in New Issue
Block a user