* sec_auth.cc (get_logon_server): Constify domain parameter.

* security.h (get_logon_server): Same in prototype.
This commit is contained in:
Corinna Vinschen 2015-01-21 16:31:38 +00:00
parent a098aad30b
commit f485f16276
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2015-01-21 Corinna Vinschen <corinna@vinschen.de>
* sec_auth.cc (get_logon_server): Constify domain parameter.
* security.h (get_logon_server): Same in prototype.
2015-01-20 Corinna Vinschen <corinna@vinschen.de>
* common.din (sockatmark): Export.

View File

@ -1,7 +1,7 @@
/* sec_auth.cc: NT authentication functions
Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
2008, 2009, 2010, 2011, 2012, 2013, 2014 Red Hat, Inc.
2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015 Red Hat, Inc.
This file is part of Cygwin.
@ -312,7 +312,7 @@ lsa_close_policy (HANDLE lsa)
}
bool
get_logon_server (PWCHAR domain, WCHAR *server, ULONG flags)
get_logon_server (PCWSTR domain, PWCHAR server, ULONG flags)
{
DWORD ret;
PDOMAIN_CONTROLLER_INFOW pci;

View File

@ -1,7 +1,7 @@
/* security.h: security declarations
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.
@ -470,7 +470,7 @@ bool get_server_groups (cygsidlist &grp_list, PSID usersid, struct passwd *pw);
/* Extract U-domain\user field from passwd entry. */
void extract_nt_dom_user (const struct passwd *pw, PWCHAR domain, PWCHAR user);
/* Get default logonserver for a domain. */
bool get_logon_server (PWCHAR domain, PWCHAR wserver, ULONG flags);
bool get_logon_server (PCWSTR domain, PWCHAR wserver, ULONG flags);
/* Fetch user profile path from registry, if it already exists. */
PWCHAR get_user_profile_directory (PCWSTR sidstr, PWCHAR path, SIZE_T path_len);