The Samba-Bugzilla – Attachment 3713 Details for
Bug 5863
mkdir -p failed on a CIFS share
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch part 1 for 3.0.x
look1 (text/plain), 792 bytes, created by
Jeremy Allison
on 2008-11-06 00:44:17 UTC
(
hide
)
Description:
Patch part 1 for 3.0.x
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2008-11-06 00:44:17 UTC
Size:
792 bytes
patch
obsolete
>diff --git a/source/smbd/files.c b/source/smbd/files.c >index d6e91c6..13e6dd9 100644 >--- a/source/smbd/files.c >+++ b/source/smbd/files.c >@@ -326,8 +326,7 @@ files_struct *file_find_di_first(struct file_id id) > fsp_fi_cache.id = id; > > for (fsp=Files;fsp;fsp=fsp->next) { >- if ( fsp->fh->fd != -1 && >- file_id_equal(&fsp->file_id, &id)) { >+ if (file_id_equal(&fsp->file_id, &id)) { > /* Setup positive cache. */ > fsp_fi_cache.fsp = fsp; > return fsp; >@@ -348,8 +347,7 @@ files_struct *file_find_di_next(files_struct *start_fsp) > files_struct *fsp; > > for (fsp = start_fsp->next;fsp;fsp=fsp->next) { >- if ( fsp->fh->fd != -1 && >- file_id_equal(&fsp->file_id, &start_fsp->file_id)) { >+ if (file_id_equal(&fsp->file_id, &start_fsp->file_id)) { > return fsp; > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 5863
:
3713
|
3714