Author: jra Date: 2006-06-27 00:15:00 +0000 (Tue, 27 Jun 2006) New Revision: 16541
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=16541 Log: Fix #3862 reported by [EMAIL PROTECTED] Jeremy. Modified: branches/SAMBA_3_0/source/libsmb/clilist.c Changeset: Modified: branches/SAMBA_3_0/source/libsmb/clilist.c =================================================================== --- branches/SAMBA_3_0/source/libsmb/clilist.c 2006-06-27 00:14:49 UTC (rev 16540) +++ branches/SAMBA_3_0/source/libsmb/clilist.c 2006-06-27 00:15:00 UTC (rev 16541) @@ -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) {
