Ignore:
Timestamp:
May 27, 2009, 11:39:15 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.2.x/source/libsmb/libsmb_dir.c

    r232 r233  
    11721172                              &targetcli, &targetpath)) {
    11731173                d_printf("Could not resolve %s\n", path);
    1174                 TALLOC_FREE(frame);
     1174                errno = ENOENT;
     1175                TALLOC_FREE(frame);
    11751176                return -1;
    11761177        }
     
    12791280                              &targetcli, &targetpath)) {
    12801281                d_printf("Could not resolve %s\n", path);
     1282                errno = ENOENT;
    12811283                TALLOC_FREE(frame);
    12821284                return -1;
     
    17441746                              &targetcli, &targetpath)) {
    17451747                d_printf("Could not resolve %s\n", path);
     1748                errno = ENOENT;
     1749                errno = ENOENT;
    17461750                TALLOC_FREE(frame);
    17471751                return -1;
     
    19101914                              &targetcli1, &targetpath1)) {
    19111915                d_printf("Could not resolve %s\n", path1);
     1916                errno = ENOENT;
    19121917                TALLOC_FREE(frame);
    19131918                return -1;
     
    19181923                              &targetcli2, &targetpath2)) {
    19191924                d_printf("Could not resolve %s\n", path2);
     1925                errno = ENOENT;
    19201926                TALLOC_FREE(frame);
    19211927                return -1;
Note: See TracChangeset for help on using the changeset viewer.