Ignore:
Timestamp:
Mar 12, 2008, 9:08:18 AM (17 years ago)
Author:
Paul Smedley
Message:

Update source to 3.0.28a

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/ndpsmb/smbwrp.c

    r113 r124  
    12621262
    12631263                        cli_dos_error(cli, &eclass, &ecode);
     1264
     1265                        /*
     1266                         * OS/2 might return "no more files",
     1267                         * which just tells us, that searchcount is zero
     1268                         * in this search.
     1269                         * Guenter Kukkukk <linux@kukkukk.com>
     1270                         */
     1271
     1272                        if (eclass == ERRDOS && ecode == ERRnofiles) {
     1273                                ff_searchcount = 0;
     1274                                cli_reset_error(cli);
     1275                                break;
     1276                        }
     1277
    12641278                        if (eclass != ERRSRV || ecode != ERRerror)
    12651279                                break;
Note: See TracChangeset for help on using the changeset viewer.