diff options
author | Shirish Kalele <kalele@samba.org> | 2000-05-16 01:13:16 +0000 |
---|---|---|
committer | Shirish Kalele <kalele@samba.org> | 2000-05-16 01:13:16 +0000 |
commit | 6803d2574fab9e5931786d5c9aa5dc5867bb5f05 (patch) | |
tree | 1f45dbed35b47aa3405a861776d649c47ba2d869 /source/smbd/dosmode.c | |
parent | 919d49b58ad8213c0e89948f560d816b20312bb2 (diff) | |
download | samba-6803d2574fab9e5931786d5c9aa5dc5867bb5f05.tar.gz samba-6803d2574fab9e5931786d5c9aa5dc5867bb5f05.tar.xz samba-6803d2574fab9e5931786d5c9aa5dc5867bb5f05.zip |
The new msdfs implementation that uses symlinks to point to other
servers. Very intuitive.
Removed the dfs map parsing code and tdb maintenance code (files
msdfs/parse_dfs_map.c & msdfs/msdfs_tdb.c), dfs map loading and unloading
calls (param/loadparm.c smbd/server.c).
Added code to display msdfs format symlinks as directories in a
transact2_findfirst/findnext. (smbd/trans2.c)
Modified msdfs/msdfs.c to use the msdfs symlinks to
create dfs referrals.
Changed msdfs/README to reflect new operability.
Diffstat (limited to 'source/smbd/dosmode.c')
-rw-r--r-- | source/smbd/dosmode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/dosmode.c b/source/smbd/dosmode.c index 26fd2aff14b..5b077110bb1 100644 --- a/source/smbd/dosmode.c +++ b/source/smbd/dosmode.c @@ -138,7 +138,7 @@ int dos_mode(connection_struct *conn,char *path,SMB_STRUCT_STAT *sbuf) if (S_ISDIR(sbuf->st_mode)) result = aDIR | (result & aRONLY); - + #ifdef S_ISLNK #if LINKS_READ_ONLY if (S_ISLNK(sbuf->st_mode) && S_ISDIR(sbuf->st_mode)) |