2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00
This commit is contained in:
Andreas Gustafsson
2001-10-02 01:09:08 +00:00
parent 8682b8f7f7
commit e1fdebdcc8
6 changed files with 13 additions and 36 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: named-checkconf.c,v 1.16 2001/09/20 15:16:18 marka Exp $ */ /* $Id: named-checkconf.c,v 1.17 2001/10/02 01:09:03 gson Exp $ */
#include <config.h> #include <config.h>
@@ -51,7 +51,8 @@ isc_log_t *logc = NULL;
static void static void
usage(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); exit(1);
} }

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: named-checkzone.c,v 1.15 2001/09/15 02:05:34 marka Exp $ */ /* $Id: named-checkzone.c,v 1.16 2001/10/02 01:09:04 gson Exp $ */
#include <config.h> #include <config.h>
@@ -60,7 +60,7 @@ dns_zonetype_t zonetype = dns_zone_master;
static void static void
usage(void) { usage(void) {
fprintf(stderr, fprintf(stderr,
"usage: named-checkzone [-dqv] [-c class] zonename filename \n"); "usage: named-checkzone [-dqv] [-c class] zonename filename\n");
exit(1); exit(1);
} }

View File

@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
esyscmd([sed "s/^/# /" COPYRIGHT])dnl esyscmd([sed "s/^/# /" COPYRIGHT])dnl
AC_DIVERT_POP()dnl AC_DIVERT_POP()dnl
AC_REVISION($Revision: 1.299 $) AC_REVISION($Revision: 1.300 $)
AC_INIT(lib/dns/name.c) AC_INIT(lib/dns/name.c)
AC_PREREQ(2.13) AC_PREREQ(2.13)
@@ -1450,7 +1450,7 @@ case "$host" in
hack_shutup_sigwait=yes hack_shutup_sigwait=yes
hack_shutup_sputaux=yes hack_shutup_sputaux=yes
;; ;;
[*-bsdi4[12]*]) [*-bsdi4.[12]*])
hack_shutup_stdargcast=yes hack_shutup_stdargcast=yes
;; ;;
*-solaris2.8) *-solaris2.8)

View File

@@ -1,7 +1,7 @@
Copyright (C) 2000, 2001 Internet Software Consortium. Copyright (C) 2000, 2001 Internet Software Consortium.
See COPYRIGHT in the source root or http://isc.org/copyright.html for terms. See COPYRIGHT in the source root or http://isc.org/copyright.html for terms.
$Id: release,v 1.43 2001/09/08 00:18:33 gson Exp $ $Id: release,v 1.44 2001/10/02 01:09:05 gson Exp $
Preparing a bind9 release Preparing a bind9 release
@@ -179,12 +179,12 @@ release.
- Sign the distribution files with the ISC signing PGP key - Sign the distribution files with the ISC signing PGP key
and fix the permissions on the signature file: and fix the permissions on the signature file:
pgp -sba bind-9.2.0rc2.tar.gz -u 0x51BAB2ED pgp -sba bind-9.2.0rc5.tar.gz -u 0x51BAB2ED
chmod 644 bind-9.2.0rc2.tar.gz.asc chmod 644 bind-9.2.0rc5.tar.gz.asc
- Verify the PGP signature: - Verify the PGP signature:
pgp bind-9.2.0rc2.tar.gz.asc bind-9.2.0rc2.tar.gz pgp bind-9.2.0rc5.tar.gz.asc bind-9.2.0rc5.tar.gz
(Look for the words "Good signature" in the output.) (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: - Copy the distribution and PGP signature files to the FTP site:
ver=9.2.0rc2 ver=9.2.0rc5
ssh -n isrv4.pa.vix.com "mkdir /udir/ftp/isc/bind9/$ver" ssh -n isrv4.pa.vix.com "mkdir /udir/ftp/isc/bind9/$ver"
scp bind-$ver.tar.gz bind-$ver.tar.gz.asc \ scp bind-$ver.tar.gz bind-$ver.tar.gz.asc \
isrv4.pa.vix.com:/udir/ftp/isc/bind9/$ver isrv4.pa.vix.com:/udir/ftp/isc/bind9/$ver

View File

@@ -41,7 +41,7 @@
1.2. This document makes use of the EDNS extension mechanisms to add 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 several new extended label types and message options, and the ability to
ask multiple questions in a single request. ask multiple questions in a single request.
compress
Expires December 1999 [Page 1] Expires December 1999 [Page 1]
INTERNET-DRAFT EDNS1 June 1999 INTERNET-DRAFT EDNS1 June 1999

View File

@@ -12,28 +12,4 @@ RBT mark bit (with Brian)
Support 64-bit offsets and serials in the journal Support 64-bit offsets and serials in the journal
(RT #124 "journalling with large files) (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 review getrrsetbyname() code and docs