home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / n / bind / bind-4.9 / bind-4.9.3-BETA9.patch1
Internet Message Format  |  1994-10-25  |  3KB

  1. From vixie@vix.com  Tue Jul 26 09:39:47 1994
  2. Received: from gw.home.vix.com by hermes.rz.uni-sb.de via SMTP (931110.SGI/930601.USB)
  3.     for flla id AA26678; Tue, 26 Jul 94 09:39:47 +0200
  4. Received: by gw.home.vix.com id AA29993; Mon, 25 Jul 94 20:49:32 -0700
  5. X-Btw: vix.com is also gw.home.vix.com and vixie.sf.ca.us
  6. Received: by gw.home.vix.com id AA29989; Mon, 25 Jul 94 20:49:31 -0700
  7. Date: Mon, 25 Jul 94 20:49:31 -0700
  8. From: paul@vix.com (Paul Vixie)
  9. Message-Id: <9407260349.AA29989@gw.home.vix.com>
  10. To: bind-workers@vix.com
  11. Subject: BIND 4.9.3 BETA9 PATCH1 -- please apply
  12. Status: RO
  13.  
  14. *** 4.9.1.35    1994/07/24 01:00:59
  15. --- CHANGES    1994/07/26 03:37:20
  16. ***************
  17. *** 1,4 ****
  18. --- 1,14 ----
  19.   $Id: CHANGES,v 4.9.1.35 1994/07/24 01:00:59 vixie Exp vixie $
  20.   
  21. +     --- 4.9.3-beta9-patch1 released ---
  22. + 209. installed marka's patch to CRED that fixes BETA9's flaw.
  23. + 208. added comment to README about -l44bsd and inet_aton().
  24. + 207. new directory: contrib/multizdb.  highly nonrecommended.
  25. + 206. small NextStep change in Makefile.
  26.       --- 4.9.3-beta9 released ---
  27.   
  28. *** 4.9.1.39    1994/07/24 00:59:36
  29. --- Makefile    1994/07/26 03:18:58
  30. ***************
  31. *** 276,280 ****
  32.   
  33.   #(NeXTstep 2.1 and 3.0)
  34. - # Also, you will want the c-news libfake/putenv.c, minus the libc.h include.
  35.   #CC = cc -Dpid_t=int
  36.   #LIBS = -ll
  37. --- 276,279 ----
  38. *** 4.9.1.13    1994/07/22 08:42:23
  39. --- README    1994/07/26 03:29:48
  40. ***************
  41. *** 15,18 ****
  42. --- 15,22 ----
  43.       rather than SIGHUP ("named.reload") when making changes of this kind.
  44.   
  45. + Also, you may find that your utilitiesw will not link with this -lresolv
  46. + unless you also install lib44bsd.a and link with -lresolv -l44bsd.  This
  47. + is because older systems do not include inet_aton() and other functions.
  48.   ----- 4.9.3 BETA6 release - June, 1994 - paul@vix.com
  49.   
  50. *** 4.9.1.19    1994/07/23 23:23:56
  51. --- named/db_update.c    1994/07/26 03:31:53
  52. ***************
  53. *** 344,348 ****
  54.                    * the same class that isn't as credable
  55.                    */
  56. !                 if (newdp->d_cred >= DB_C_AUTH && 
  57.                       newdp->d_cred > dp->d_cred)
  58.                       /* better credibility and the old datum
  59. --- 344,348 ----
  60.                    * the same class that isn't as credable
  61.                    */
  62. !                 if (newdp->d_cred == DB_C_ZONE && 
  63.                       newdp->d_cred > dp->d_cred)
  64.                       /* better credibility and the old datum
  65. ***************
  66. *** 355,359 ****
  67.                    * node, don't add in other data.
  68.                    */
  69. !                 if (dp->d_cred >= DB_C_AUTH &&
  70.                       newdp->d_cred < dp->d_cred)
  71.                       return (AUTH);
  72. --- 355,359 ----
  73.                    * node, don't add in other data.
  74.                    */
  75. !                 if (dp->d_cred == DB_C_ZONE &&
  76.                       newdp->d_cred < dp->d_cred)
  77.                       return (AUTH);
  78. ***************
  79. *** 362,366 ****
  80.                    * but isn't as credible, reject it.
  81.                    */
  82. !                 if (newdp->d_cred >= DB_C_AUTH && 
  83.                       newdp->d_cred == dp->d_cred &&
  84.                       newdp->d_clev < dp->d_clev)
  85. --- 362,366 ----
  86.                    * but isn't as credible, reject it.
  87.                    */
  88. !                 if (newdp->d_cred == DB_C_ZONE && 
  89.                       newdp->d_cred == dp->d_cred &&
  90.                       newdp->d_clev < dp->d_clev)
  91.  
  92.