* dtable.cc (build_fh_pc): Add missing DEV_SD1_MAJOR case (Thanks to

Joe Loh for noticing).
This commit is contained in:
Corinna Vinschen 2006-11-06 13:46:24 +00:00
parent 2228ff0267
commit cc9dbc905c
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-11-06 Corinna Vinschen <corinna@vinschen.de>
* dtable.cc (build_fh_pc): Add missing DEV_SD1_MAJOR case (Thanks to
Joe Loh for noticing).
2006-11-02 Corinna Vinschen <corinna@vinschen.de> 2006-11-02 Corinna Vinschen <corinna@vinschen.de>
* path.cc (symlink_info::posixify): Fix comment. * path.cc (symlink_info::posixify): Fix comment.

View File

@ -1,7 +1,7 @@
/* dtable.cc: file descriptor support. /* dtable.cc: file descriptor support.
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
2005 Red Hat, Inc. 2005, 2006 Red Hat, Inc.
This file is part of Cygwin. This file is part of Cygwin.
@ -383,6 +383,7 @@ build_fh_pc (path_conv& pc)
case DEV_FLOPPY_MAJOR: case DEV_FLOPPY_MAJOR:
case DEV_CDROM_MAJOR: case DEV_CDROM_MAJOR:
case DEV_SD_MAJOR: case DEV_SD_MAJOR:
case DEV_SD1_MAJOR:
fh = cnew (fhandler_dev_floppy) (); fh = cnew (fhandler_dev_floppy) ();
break; break;
case DEV_TAPE_MAJOR: case DEV_TAPE_MAJOR: