home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / bugs / 2bsd / 85 < prev    next >
Encoding:
Text File  |  1992-08-30  |  1.2 KB  |  46 lines

  1. Newsgroups: comp.bugs.2bsd
  2. Path: sparky!uunet!europa.asd.contel.com!awds.imsd.contel.com!wlbr!sms
  3. From: sms@WLV.IIPO.GTEGSC.COM (Steven M. Schultz)
  4. Subject: nslookup thinks sri-nic.arpa exists - oops! (#76)
  5. Message-ID: <1992Aug31.053201.12523@wlbr.iipo.gtegsc.com>
  6. Sender: news@wlbr.iipo.gtegsc.com (news)
  7. Nntp-Posting-Host: wlv.iipo.gtegsc.com
  8. Organization: GTE Government Systems
  9. Date: Mon, 31 Aug 92 05:32:01 GMT
  10. Lines: 34
  11.  
  12. Subject: nslookup thinks sri-nic.arpa exists - oops! (#76)
  13. Index:    etc/named/tools/nslookup/main.c 2.11BSD
  14.  
  15. Description:
  16.  
  17.     'nslookup' still thought 'sri-nic.arpa' was the "root" nameserver.
  18.     (no sense of tradition these days i guess).
  19.  
  20. Repeat-By:
  21.     Run 'nslookup'.
  22.  
  23. Fix:
  24.     Apply the trivial patch below.
  25.  
  26. =================================cut here================================
  27. *** /usr/src/etc/named/tools/nslookup/main.c.old    Thu Sep  8 02:17:37 1988
  28. --- /usr/src/etc/named/tools/nslookup/main.c    Sun Aug 23 21:31:12 1992
  29. ***************
  30. *** 67,73 ****
  31.    * the "set root" command.
  32.    */
  33.   
  34. ! #define     ROOT_SERVER "sri-nic.arpa."
  35.   char         rootServerName[NAME_LEN];
  36.   
  37.   
  38. --- 67,73 ----
  39.    * the "set root" command.
  40.    */
  41.   
  42. ! #define     ROOT_SERVER "ns.nic.ddn.mil."
  43.   char         rootServerName[NAME_LEN];
  44.   
  45.   
  46.