Displaying 1 result from an estimated 1 matches for "found_name".
Did you mean:
find_name
2019 May 29
1
How to improve the performance with unix_convert ?
...e get_real_filename_full_scan in the filename.c .the client will be failed to find some file .but the write speed will be improved .
static int get_real_filename_full_scan(connection_struct *conn,
const char *path, const char *name,
bool mangled,
TALLOC_CTX *mem_ctx, char **found_name)
{
struct smb_Dir *cur_dir;
const char *dname = NULL;
char *talloced = NULL;
char *unmangled_name = NULL;
long curpos;
struct smb_filename *smb_fname = NULL;
/* handle null paths */
if ((path == NULL) || (*path == 0)) {
path = ".";
}
/* If we have a case-sensitive filesystem, it doesn...