home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / bugs / 2bsd / 84 < prev    next >
Encoding:
Text File  |  1992-08-30  |  1.0 KB  |  35 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: overlooked filename trunctations (#75)
  5. Message-ID: <1992Aug31.052859.12429@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:28:59 GMT
  10. Lines: 23
  11.  
  12. Subject: overlooked filename trunctations (#75)
  13. Index:    usr.lib/sendmail/cf.named 2.11BSD
  14.  
  15. Description:
  16.     A few file names were overlooked in the "liberation from the 14
  17.     character limit".
  18.  
  19. Repeat-By:
  20.     
  21.     ls -l /usr/src/usr.lib/sendmail/cf.named
  22.  
  23.     Observe the names ending in "." or ".m" - they should really
  24.     be ending in ".m4".
  25.  
  26. Fix:
  27.  
  28.     Run the shell script below, it will rename the errant files.
  29. =================================cut here=================================
  30. #! /bin/sh
  31. cd /usr/src/usr.lib/sendmail/cf.named
  32. mv nicregistered. nicregistered.m4
  33. mv postwriterule. /usr/src/usr.lib/sendmail/cf.named/postwriterule.m4
  34. mv prewriterule.m prewriterule.m4
  35.