Author: jra Date: 2006-06-27 00:14:49 +0000 (Tue, 27 Jun 2006) New Revision: 16540
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=16540 Log: Fix #3862 reported by [EMAIL PROTECTED] Jeremy. Modified: trunk/source/libsmb/clilist.c Changeset: Modified: trunk/source/libsmb/clilist.c =================================================================== --- trunk/source/libsmb/clilist.c 2006-06-27 00:10:40 UTC (rev 16539) +++ trunk/source/libsmb/clilist.c 2006-06-27 00:14:49 UTC (rev 16540) @@ -185,7 +185,6 @@ BOOL First = True; int ff_searchcount=0; int ff_eos=0; - int ff_lastname=0; int ff_dir_handle=0; int loop_count = 0; char *rparam=NULL, *rdata=NULL; @@ -297,11 +296,9 @@ ff_dir_handle = SVAL(p,0); ff_searchcount = SVAL(p,2); ff_eos = SVAL(p,4); - ff_lastname = SVAL(p,8); } else { ff_searchcount = SVAL(p,0); ff_eos = SVAL(p,2); - ff_lastname = SVAL(p,6); } if (ff_searchcount == 0) {
