Ignore:
Timestamp:
May 12, 2014, 8:58:38 PM (11 years ago)
Author:
Silvan Scherrer
Message:

Samba 3.6: updated vendor to latest version

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/smbd/msdfs.c

    r746 r860  
    975975                DEBUG(3,("get_referred_path: No valid referrals for path %s\n",
    976976                        dfs_path));
     977                if (NT_STATUS_IS_OK(status)) {
     978                        /*
     979                         * We are in an error path here (we
     980                         * know it's not a DFS path), but
     981                         * dfs_path_lookup() can return
     982                         * NT_STATUS_OK. Ensure we always
     983                         * return a valid error code.
     984                         *
     985                         * #9588 - ACLs are not inherited to directories
     986                         *         for DFS shares.
     987                         */
     988                        status = NT_STATUS_NOT_FOUND;
     989                }
    977990                goto err_exit;
    978991        }
Note: See TracChangeset for help on using the changeset viewer.