Ignore:
Timestamp:
May 24, 2009, 7:51:24 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 branch to 3.3.3

File:
1 edited

Legend:

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

    r221 r223  
    11701170                              &targetcli, &targetpath)) {
    11711171                d_printf("Could not resolve %s\n", path);
    1172                 TALLOC_FREE(frame);
     1172                errno = ENOENT;
     1173                TALLOC_FREE(frame);
    11731174                return -1;
    11741175        }
     
    12771278                              &targetcli, &targetpath)) {
    12781279                d_printf("Could not resolve %s\n", path);
     1280                errno = ENOENT;
    12791281                TALLOC_FREE(frame);
    12801282                return -1;
     
    15591561                              &targetcli, &targetpath)) {
    15601562                d_printf("Could not resolve %s\n", path);
     1563                errno = ENOENT;
    15611564                TALLOC_FREE(frame);
    15621565                return -1;
     
    17501753                              &targetcli, &targetpath)) {
    17511754                d_printf("Could not resolve %s\n", path);
     1755                errno = ENOENT;
    17521756                TALLOC_FREE(frame);
    17531757                return -1;
     
    19221926                              &targetcli1, &targetpath1)) {
    19231927                d_printf("Could not resolve %s\n", path1);
     1928                errno = ENOENT;
    19241929                TALLOC_FREE(frame);
    19251930                return -1;
     
    19371942                              &targetcli2, &targetpath2)) {
    19381943                d_printf("Could not resolve %s\n", path2);
     1944                errno = ENOENT;
    19391945                TALLOC_FREE(frame);
    19401946                return -1;
Note: See TracChangeset for help on using the changeset viewer.