From owner-freebsd-questions Mon Jan 26 21:09:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA04578 for questions-outgoing; Mon, 26 Jan 1998 21:09:26 -0800 (PST) (envelope-from owner-freebsd-questions@FreeBSD.ORG) Received: from p.funk.org (p.funk.org [194.109.61.126]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA04573; Mon, 26 Jan 1998 21:09:11 -0800 (PST) (envelope-from alexlh@p.funk.org) Received: (from alexlh@localhost) by p.funk.org (8.8.7/8.8.7) id FAA00231; Tue, 27 Jan 1998 05:43:41 +0100 (CET) (envelope-from alexlh) Message-ID: <19980127054341.62282@funk.org> Date: Tue, 27 Jan 1998 05:43:41 +0100 From: Alex Le Heux To: freebsd-questions@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: strangeness in atapi.c? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.84e Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk Hi, While going through atapi.c on my 2.2.5 system, attempting to find out what's wrong with my ATAPI Zipdrive, I found the following: case AT_TYPE_DIRECT: /* direct-access */ case AT_TYPE_CDROM: /* CD-ROM device */ #if NWCD > 0 /* ATAPI CD-ROM */ [etc] This seems to mean that any device that is AT_TYPE_DIRECT (like the Zipdrive) will get attached as a cdrom. Is this correct? If so, why? Alex