From owner-cvs-gnu Tue Aug 15 13:38:14 1995 Return-Path: cvs-gnu-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id NAA26532 for cvs-gnu-outgoing; Tue, 15 Aug 1995 13:38:14 -0700 Received: (from peter@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id NAA26516 ; Tue, 15 Aug 1995 13:38:02 -0700 Date: Tue, 15 Aug 1995 13:38:02 -0700 From: Peter Wemm Message-Id: <199508152038.NAA26516@freefall.FreeBSD.org> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/cvs/cvs import.c Sender: cvs-gnu-owner@FreeBSD.org Precedence: bulk peter 95/08/15 13:38:02 Modified: gnu/usr.bin/cvs/cvs import.c Log: This changes two things when importing an unreadable file: 1: It stops invalid files being created in the cvs tree 2: It stops the import from aborting without mailing a commit message.. The first is simple, it opens the file for reading before touching the repository, and the second catches the pieces when it hits an unreadable file rather than just aborting mid-way through, leaving the repository in a bit mess. Reviewed by: rgrimes