diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2008-04-21 14:00:24 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2008-04-21 14:00:24 +0000 |
commit | c7364f149634940be6821880bc3788c8adb5fb7f (patch) | |
tree | 3a247915a537f1b252915c2d29542d797168defe /winsup/cygwin/shared_info.h | |
parent | 2bc35e62995c59872a7aec8367934a37b3b786d9 (diff) | |
download | cygnal-c7364f149634940be6821880bc3788c8adb5fb7f.tar.gz cygnal-c7364f149634940be6821880bc3788c8adb5fb7f.tar.bz2 cygnal-c7364f149634940be6821880bc3788c8adb5fb7f.zip |
* mount.cc (mount_info::init): Remove call to from_registry. Print
message that fstab is missing.
(mount_info::from_fstab): Use CYGWIN_INFO_CYGDRIVE_DEFAULT_PREFIX
instead of constant string.
(mount_info::read_mounts): Remove.
(mount_info::from_registry): Remove.
(mount_info::read_cygdrive_info_from_registry): Remove.
* postinstall: Enable code to create fstab entries from old registry
entries.
* registry.cc (reg_key::reg_key): Drop CYGWIN_INFO_CYGNUS_REGISTRY_NAME
from registry key.
* shared_info.h (mount_info::read_mounts): Remove declaration.
(mount_info::from_registry): Ditto.
(mount_info::to_registry): Ditto.
(mount_info::read_cygdrive_info_from_registry): Ditto.
* winver.rc (CYGWIN_REGISTRY_KEY): Remove.
(LegalCopyright): Fix to include 2008.
(RegistryKey): Set to CYGWIN_INFO_CYGWIN_REGISTRY_NAME.
* include/cygwin/version.h (CYGWIN_INFO_CYGNUS_REGISTRY_NAME): Remove.
Diffstat (limited to 'winsup/cygwin/shared_info.h')
-rw-r--r-- | winsup/cygwin/shared_info.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/winsup/cygwin/shared_info.h b/winsup/cygwin/shared_info.h index 8af156226..bd743d5df 100644 --- a/winsup/cygwin/shared_info.h +++ b/winsup/cygwin/shared_info.h @@ -77,7 +77,6 @@ class mount_info bool from_fstab_line (char *line, bool user); bool from_fstab (bool user); - void from_registry (); unsigned set_flags_from_win32_path (const char *path); int conv_to_win32_path (const char *src_path, char *dst, device&, @@ -99,12 +98,9 @@ class mount_info private: void sort (); - void read_mounts (reg_key& r); void mount_slash (); - void to_registry (); int cygdrive_win32_path (const char *src, char *dst, int& unit); - void read_cygdrive_info_from_registry (); }; class user_info |