1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

r5975: Re-arrange code and comments to make more sense.

Jeremy.
(This used to be commit 08616ad80d)
This commit is contained in:
Jeremy Allison 2005-03-22 22:04:01 +00:00 committed by Gerald (Jerry) Carter
parent 47f58beb28
commit 656140bf4b

View File

@ -269,18 +269,6 @@ int cli_list_new(struct cli_state *cli,const char *Mask,uint16 attribute,
/* point to the data bytes */
p = rdata;
/* we might need the lastname for continuations */
/* and add them to the dirlist pool */
tdl = SMB_REALLOC(dirlist,dirlist_len + data_len);
if (!tdl) {
DEBUG(0,("cli_list_new: Failed to expand dirlist\n"));
break;
} else {
dirlist = tdl;
}
/* we might need the lastname for continuations */
for (p2=p,i=0;i<ff_searchcount;i++) {
p2 += interpret_long_filename(cli,info_level,p2,&finfo);
@ -293,6 +281,16 @@ int cli_list_new(struct cli_state *cli,const char *Mask,uint16 attribute,
}
/* grab the data for later use */
/* and add them to the dirlist pool */
tdl = SMB_REALLOC(dirlist,dirlist_len + data_len);
if (!tdl) {
DEBUG(0,("cli_list_new: Failed to expand dirlist\n"));
break;
} else {
dirlist = tdl;
}
memcpy(dirlist+dirlist_len,p,data_len);
dirlist_len += data_len;