diff options
author | Volker Lendecke <vl@samba.org> | 2008-06-22 20:33:28 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-06-22 20:45:53 +0200 |
commit | 13ebf889b39e0b71f1f98198b0d003f5461d42a6 (patch) | |
tree | b87e507b621e7c486e5ea14850ce0dc5557242d6 /source3/include/proto.h | |
parent | 19654e232cc3b761931259aa587af24d7313781b (diff) | |
download | samba-13ebf889b39e0b71f1f98198b0d003f5461d42a6.tar.gz samba-13ebf889b39e0b71f1f98198b0d003f5461d42a6.tar.bz2 samba-13ebf889b39e0b71f1f98198b0d003f5461d42a6.zip |
Remove the "exists" parameter from create_msdfs_link
Jeremy, setting "exists" to True in _dfs_Add prevented the initial creation of
a new symlink for me, because the SMB_VFS_UNLINK failed. This also exists in
3.2. I only check it into 3.3 as I would like you to look at it first.
Thanks,
Volker
(This used to be commit f58b098a4172949018e84c4d0c722d6eb9bba514)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 30642678eb..1d30a9a186 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -9774,8 +9774,7 @@ int setup_dfs_referral(connection_struct *orig_conn, bool create_junction(TALLOC_CTX *ctx, const char *dfs_path, struct junction_map *jucn); -bool create_msdfs_link(const struct junction_map *jucn, - bool exists); +bool create_msdfs_link(const struct junction_map *jucn); bool remove_msdfs_link(const struct junction_map *jucn); struct junction_map *enum_msdfs_links(TALLOC_CTX *ctx, size_t *p_num_jn); NTSTATUS resolve_dfspath(TALLOC_CTX *ctx, |