diff options
Diffstat (limited to 'winsup/cygwin/cygheap.h')
-rw-r--r-- | winsup/cygwin/cygheap.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/winsup/cygwin/cygheap.h b/winsup/cygwin/cygheap.h index 4ed9bfb5a..4b7f66896 100644 --- a/winsup/cygwin/cygheap.h +++ b/winsup/cygwin/cygheap.h @@ -1,7 +1,7 @@ /* cygheap.h: Cygwin heap manager. Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, - 2011, 2012, 2013, 2014 Red Hat, Inc. + 2011, 2012, 2013, 2014, 2015 Red Hat, Inc. This file is part of Cygwin. @@ -475,11 +475,15 @@ public: char *get_home (struct _USER_INFO_3 *ui, cygpsid &sid, PCWSTR dom, PCWSTR name, bool fq); - char *get_shell (cyg_ldap *pldap, PCWSTR dom, PCWSTR name, bool fq); - char *get_shell (struct _USER_INFO_3 *ui, PCWSTR dom, PCWSTR name, bool fq); + char *get_shell (cyg_ldap *pldap, cygpsid &sid, PCWSTR dom, PCWSTR name, + bool fq); + char *get_shell (struct _USER_INFO_3 *ui, cygpsid &sid, PCWSTR dom, + PCWSTR name, bool fq); - char *get_gecos (cyg_ldap *pldap, PCWSTR dom, PCWSTR name, bool fq); - char *get_gecos (struct _USER_INFO_3 *ui, PCWSTR dom, PCWSTR name, bool fq); + char *get_gecos (cyg_ldap *pldap, cygpsid &sid, PCWSTR dom, PCWSTR name, + bool fq); + char *get_gecos (struct _USER_INFO_3 *ui, cygpsid &sid, PCWSTR dom, + PCWSTR name, bool fq); inline int nss_db_enums () const { return enums; } inline PCWSTR nss_db_enum_tdoms () const { return enum_tdoms; } |