* dtable.cc (build_fh_pc): Add missing DEV_SD1_MAJOR case (Thanks to
Joe Loh for noticing).
This commit is contained in:
parent
2228ff0267
commit
cc9dbc905c
|
@ -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>
|
||||
|
||||
* path.cc (symlink_info::posixify): Fix comment.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* dtable.cc: file descriptor support.
|
||||
|
||||
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.
|
||||
|
||||
|
@ -383,6 +383,7 @@ build_fh_pc (path_conv& pc)
|
|||
case DEV_FLOPPY_MAJOR:
|
||||
case DEV_CDROM_MAJOR:
|
||||
case DEV_SD_MAJOR:
|
||||
case DEV_SD1_MAJOR:
|
||||
fh = cnew (fhandler_dev_floppy) ();
|
||||
break;
|
||||
case DEV_TAPE_MAJOR:
|
||||
|
|
Loading…
Reference in New Issue