diff options
author | Jeremy Allison <jra@samba.org> | 2007-03-12 17:55:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:18:34 -0500 |
commit | 24cdd7c73389c9eed981313973df2c3595222781 (patch) | |
tree | 0b1dbbcde1eea708f774d09b21695d46437de24d /source3/include/msdfs.h | |
parent | 59c071f707c8bd366b807869e88cbf4714185c29 (diff) | |
download | samba-24cdd7c73389c9eed981313973df2c3595222781.tar.gz |
r21800: Check-in the DFS rewrite. I am still testing this but it
works from smbclient and Windows, and I am promising to
support and fix both client and server code moving forward.
Still need to test the RPC admin support but I haven't
changed that code.
Jeremy.
(This used to be commit 7a7862c01d07796ef206b255c676ad7dc2cc42fc)
Diffstat (limited to 'source3/include/msdfs.h')
-rw-r--r-- | source3/include/msdfs.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/include/msdfs.h b/source3/include/msdfs.h index bf553f4a993..05cfe4e102f 100644 --- a/source3/include/msdfs.h +++ b/source3/include/msdfs.h @@ -51,7 +51,7 @@ struct referral { }; struct junction_map { - pstring service_name; + fstring service_name; pstring volume_name; pstring comment; int referral_count; @@ -59,9 +59,10 @@ struct junction_map { }; struct dfs_path { - pstring hostname; - pstring servicename; + fstring hostname; + fstring servicename; pstring reqpath; + BOOL posix_path; }; #define init_dfsroot(conn, inbuf, outbuf) \ |