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

Make create_conn_struct() public

This commit is contained in:
Volker Lendecke 2008-07-27 17:56:48 +02:00
parent de5d27d70a
commit e115e25822
2 changed files with 6 additions and 1 deletions

View File

@ -9829,6 +9829,11 @@ NTSTATUS resolve_dfspath_wcard(TALLOC_CTX *ctx,
const char *name_in,
char **pp_name_out,
bool *ppath_contains_wcard);
NTSTATUS create_conn_struct(TALLOC_CTX *ctx,
connection_struct **pconn,
int snum,
const char *path,
char **poldcwd);
/* The following definitions come from smbd/negprot.c */

View File

@ -215,7 +215,7 @@ static NTSTATUS parse_dfs_path(connection_struct *conn,
Note this CHANGES CWD !!!! JRA.
*********************************************************/
static NTSTATUS create_conn_struct(TALLOC_CTX *ctx,
NTSTATUS create_conn_struct(TALLOC_CTX *ctx,
connection_struct **pconn,
int snum,
const char *path,