Changeset 751 for trunk/server/source3/smbd/msdfs.c
- Timestamp:
- Nov 29, 2012, 1:59:04 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/smbd/msdfs.c
r745 r751 576 576 577 577 /* 578 * Note the unix path conversion here we're doing we can 578 * Note the unix path conversion here we're doing we 579 579 * throw away. We're looking for a symlink for a dfs 580 580 * resolution, if we don't find it we'll do another 581 581 * unix_convert later in the codepath. 582 * If we needed to remember what we'd resolved in583 * dp->reqpath (as the original code did) we'd584 * copy (localhost, dp->reqpath) on any code585 * path below that returns True - but I don't586 * think this is needed. JRA.587 582 */ 588 583 … … 595 590 return status; 596 591 } 597 598 /* Create an smb_fname to use below. */ 599 status = create_synthetic_smb_fname(ctx, pdp->reqpath, NULL, 600 NULL, &smb_fname); 601 if (!NT_STATUS_IS_OK(status)) { 592 if (smb_fname == NULL || smb_fname->base_name == NULL) { 602 593 return status; 603 594 }
Note:
See TracChangeset
for help on using the changeset viewer.