* dtable.cc (build_fh_pc): When creating an archetype, use native name rather
than unix name if name doesn't exist.
This commit is contained in:
parent
a534dfd26e
commit
483c843a6a
@ -1,3 +1,8 @@
|
||||
2013-11-30 Christopher Faylor <me.cygwin2013@cgf.cx>
|
||||
|
||||
* dtable.cc (build_fh_pc): When creating an archetype, use native name
|
||||
rather than unix name if name doesn't exist.
|
||||
|
||||
2013-11-29 Christopher Faylor <me.cygwin2013@cgf.cx>
|
||||
|
||||
* include/cygwin/version.h (CYGWIN_VERSION_DLL_MINOR): Bump to 27.
|
||||
|
@ -641,7 +641,7 @@ build_fh_pc (path_conv& pc)
|
||||
else
|
||||
{
|
||||
if (!fh->get_name ())
|
||||
fh->set_name (fh->dev ().name);
|
||||
fh->set_name (fh->dev ().native);
|
||||
fh->archetype = fh->clone ();
|
||||
debug_printf ("created an archetype (%p) for %s(%d/%d)", fh->archetype, fh->get_name (), fh->dev ().get_major (), fh->dev ().get_minor ());
|
||||
fh->archetype->archetype = NULL;
|
||||
|
6
winsup/cygwin/release/1.7.27
Normal file
6
winsup/cygwin/release/1.7.27
Normal file
@ -0,0 +1,6 @@
|
||||
What's new:
|
||||
-----------
|
||||
|
||||
- Some devices, like, /dev/dsp are no longer detected due to the new
|
||||
use of \Device\Null for devices which have no real handle.
|
||||
Fixes: http://cygwin.com/ml/cygwin/2013-12/threads.html#00000
|
Loading…
Reference in New Issue
Block a user