Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2007-02-26 15:39:25 +0300
committerCorinna Vinschen <corinna@vinschen.de>2007-02-26 15:39:25 +0300
commit14e06cca26d10be79606054ff17eecc573db25db (patch)
tree292893c3b6a5b78948f293b520d5406abcbca0ad /winsup/cygwin/fhandler_registry.cc
parent457c7938f020cabd6029ab976ccfc35ba86d5369 (diff)
* fhandler_registry.cc (registry_listing): Drop name of HKEY_DYN_DATA.
(registry_keys): Drop HKEY_DYN_DATA. * net.cc: Fix comment. * syslog.cc: Ditto.
Diffstat (limited to 'winsup/cygwin/fhandler_registry.cc')
-rw-r--r--winsup/cygwin/fhandler_registry.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/winsup/cygwin/fhandler_registry.cc b/winsup/cygwin/fhandler_registry.cc
index 47ef092f5..26e975069 100644
--- a/winsup/cygwin/fhandler_registry.cc
+++ b/winsup/cygwin/fhandler_registry.cc
@@ -1,6 +1,6 @@
/* fhandler_registry.cc: fhandler for /proc/registry virtual filesystem
- Copyright 2002, 2003, 2003, 2004, 2005, 2006 Red Hat, Inc.
+ Copyright 2002, 2003, 2003, 2004, 2005, 2006, 2007 Red Hat, Inc.
This file is part of Cygwin.
@@ -46,7 +46,6 @@ static const char *registry_listing[] =
"HKEY_CURRENT_USER",
"HKEY_LOCAL_MACHINE",
"HKEY_USERS",
- "HKEY_DYN_DATA", // 95/98/Me
"HKEY_PERFORMANCE_DATA", // NT/2000/XP
NULL
};
@@ -60,7 +59,6 @@ static const HKEY registry_keys[] =
HKEY_CURRENT_USER,
HKEY_LOCAL_MACHINE,
HKEY_USERS,
- HKEY_DYN_DATA,
HKEY_PERFORMANCE_DATA
};