summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/mount.h
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2014-11-27 16:49:41 +0000
committerCorinna Vinschen <corinna@vinschen.de>2014-11-27 16:49:41 +0000
commite7d7418270fd17998e09017f013816788b32651d (patch)
tree4615fa9e3fd977828a3211a927bcba832475e021 /winsup/cygwin/mount.h
parentdb880b56427272aaea287a42541fe127dc5590a6 (diff)
downloadcygnal-e7d7418270fd17998e09017f013816788b32651d.tar.gz
cygnal-e7d7418270fd17998e09017f013816788b32651d.tar.bz2
cygnal-e7d7418270fd17998e09017f013816788b32651d.zip
* mount.cc (mount_info::init): Take bool argument and allow to
initialize mount table in two steps, system and user, depending on bool value. * mount.h (class mount_info): Align declaration of init function to above change. * shared.cc (user_info::initialize): Initialize mount table in two steps to allow internal_getpwsid to create valid POSIX paths from DOS paths given in AD. Add comments. * uinfo.cc (cygheap_pwdgrp::get_home): Allow DOS paths in NSS_SCHEME_FREEATTR attributes. (cygheap_pwdgrp::get_shell): Ditto.
Diffstat (limited to 'winsup/cygwin/mount.h')
-rw-r--r--winsup/cygwin/mount.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/mount.h b/winsup/cygwin/mount.h
index 203bfff33..e7d542683 100644
--- a/winsup/cygwin/mount.h
+++ b/winsup/cygwin/mount.h
@@ -1,7 +1,7 @@
/* mount.h: mount definitions.
Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
- 2008, 2009, 2010, 2011, 2012, 2013 Red Hat, Inc.
+ 2008, 2009, 2010, 2011, 2012, 2013, 2014 Red Hat, Inc.
This file is part of Cygwin.
@@ -184,7 +184,7 @@ class mount_info
int native_sorted[MAX_MOUNTS];
public:
- void init ();
+ void init (bool);
int add_item (const char *dev, const char *path, unsigned flags);
int del_item (const char *path, unsigned flags);