home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.bugs.2bsd
- Path: sparky!uunet!europa.asd.contel.com!awds.imsd.contel.com!wlbr!sms
- From: sms@WLV.IIPO.GTEGSC.COM (Steven M. Schultz)
- Subject: overlooked filename trunctations (#75)
- Message-ID: <1992Aug31.052859.12429@wlbr.iipo.gtegsc.com>
- Sender: news@wlbr.iipo.gtegsc.com (news)
- Nntp-Posting-Host: wlv.iipo.gtegsc.com
- Organization: GTE Government Systems
- Date: Mon, 31 Aug 92 05:28:59 GMT
- Lines: 23
-
- Subject: overlooked filename trunctations (#75)
- Index: usr.lib/sendmail/cf.named 2.11BSD
-
- Description:
- A few file names were overlooked in the "liberation from the 14
- character limit".
-
- Repeat-By:
-
- ls -l /usr/src/usr.lib/sendmail/cf.named
-
- Observe the names ending in "." or ".m" - they should really
- be ending in ".m4".
-
- Fix:
-
- Run the shell script below, it will rename the errant files.
- =================================cut here=================================
- #! /bin/sh
- cd /usr/src/usr.lib/sendmail/cf.named
- mv nicregistered. nicregistered.m4
- mv postwriterule. /usr/src/usr.lib/sendmail/cf.named/postwriterule.m4
- mv prewriterule.m prewriterule.m4
-