summaryrefslogtreecommitdiff
path: root/source3/smbd/msdfs.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-01-08 09:29:48 +1100
committerJeremy Allison <jra@samba.org>2013-01-07 16:18:14 -0800
commit5a3e915d20bb11984c42081bf25ce09baa58e04e (patch)
treeb160a05622918bf3e72acf0cb45a5e07f8264304 /source3/smbd/msdfs.c
parent6c80cf747d75e648a1d88d477bcf476e6874c4b3 (diff)
downloadsamba-5a3e915d20bb11984c42081bf25ce09baa58e04e.tar.gz
samba-5a3e915d20bb11984c42081bf25ce09baa58e04e.tar.bz2
samba-5a3e915d20bb11984c42081bf25ce09baa58e04e.zip
smbd: Fix calls to create_conn_struct_cwd to be correctly indented.
These are whitespace changes only, left out of the previous commit to preserve clarity. Andrew Bartlett. Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/smbd/msdfs.c')
-rw-r--r--source3/smbd/msdfs.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/source3/smbd/msdfs.c b/source3/smbd/msdfs.c
index 83f140c25b..e8a0610d74 100644
--- a/source3/smbd/msdfs.c
+++ b/source3/smbd/msdfs.c
@@ -1012,10 +1012,10 @@ NTSTATUS get_referred_path(TALLOC_CTX *ctx,
}
status = create_conn_struct_cwd(ctx,
- server_event_context(),
- server_messaging_context(),
- &conn, snum,
- lp_pathname(talloc_tos(), snum), NULL, &oldpath);
+ server_event_context(),
+ server_messaging_context(),
+ &conn, snum,
+ lp_pathname(talloc_tos(), snum), NULL, &oldpath);
if (!NT_STATUS_IS_OK(status)) {
TALLOC_FREE(pdp);
return status;
@@ -1191,10 +1191,10 @@ static bool junction_to_local_path(const struct junction_map *jucn,
return False;
}
status = create_conn_struct_cwd(talloc_tos(),
- server_event_context(),
- server_messaging_context(),
- conn_out,
- snum, lp_pathname(talloc_tos(), snum), NULL, oldpath);
+ server_event_context(),
+ server_messaging_context(),
+ conn_out,
+ snum, lp_pathname(talloc_tos(), snum), NULL, oldpath);
if (!NT_STATUS_IS_OK(status)) {
return False;
}
@@ -1356,10 +1356,10 @@ static int count_dfs_links(TALLOC_CTX *ctx, int snum)
*/
status = create_conn_struct_cwd(talloc_tos(),
- server_event_context(),
- server_messaging_context(),
- &conn,
- snum, connect_path, NULL, &cwd);
+ server_event_context(),
+ server_messaging_context(),
+ &conn,
+ snum, connect_path, NULL, &cwd);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(3, ("create_conn_struct failed: %s\n",
nt_errstr(status)));
@@ -1432,10 +1432,10 @@ static int form_junctions(TALLOC_CTX *ctx,
*/
status = create_conn_struct_cwd(ctx,
- server_event_context(),
- server_messaging_context(),
- &conn, snum, connect_path, NULL,
- &cwd);
+ server_event_context(),
+ server_messaging_context(),
+ &conn, snum, connect_path, NULL,
+ &cwd);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(3, ("create_conn_struct failed: %s\n",
nt_errstr(status)));