1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

Yes, dev is an 'input/output' paramater...

Andrew Bartlett
This commit is contained in:
Andrew Bartlett 0001-01-01 00:00:00 +00:00
parent cd6a2dad4e
commit 8cac618174

View File

@ -218,7 +218,7 @@ int find_service(fstring service)
do some basic sainity checks on the share.
This function modifies dev, ecode.
****************************************************************************/
static NTSTATUS share_sanity_checks(int snum, char* service, pstring dev)
static NTSTATUS share_sanity_checks(int snum, const char* service, pstring dev)
{
if (!lp_snum_ok(snum) ||
@ -325,7 +325,7 @@ static void set_admin_user(connection_struct *conn)
****************************************************************************/
connection_struct *make_connection(char *service, DATA_BLOB password,
const char *dev, uint16 vuid, NTSTATUS *status)
char *dev, uint16 vuid, NTSTATUS *status)
{
int snum;
struct passwd *pass = NULL;