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_file.c

    r221 r223  
    119119                                      &targetcli, &targetpath)) {
    120120                        d_printf("Could not resolve %s\n", path);
     121                        errno = ENOENT;
    121122                        SAFE_FREE(file);
    122123                        TALLOC_FREE(frame);
     
    299300                              &targetcli, &targetpath)) {
    300301                d_printf("Could not resolve %s\n", path);
     302                errno = ENOENT;
    301303                TALLOC_FREE(frame);
    302304                return -1;
     
    388390                              &targetcli, &targetpath)) {
    389391                d_printf("Could not resolve %s\n", path);
     392                errno = ENOENT;
    390393                TALLOC_FREE(frame);
    391394                return -1;
     
    463466                              &targetcli, &targetpath)) {
    464467                d_printf("Could not resolve %s\n", path);
     468                errno = ENOENT;
    465469                TALLOC_FREE(frame);
    466470                return -1;
     
    545549                              &targetcli, &targetpath)) {
    546550                d_printf("Couldn't resolve %s\n", path);
     551                errno = ENOENT;
    547552                TALLOC_FREE(frame);
    548553                return False;
     
    757762                                      &targetcli, &targetpath)) {
    758763                        d_printf("Could not resolve %s\n", path);
     764                        errno = ENOENT;
    759765                        TALLOC_FREE(frame);
    760766                        return -1;
     
    848854                              &targetcli, &targetpath)) {
    849855                d_printf("Could not resolve %s\n", path);
     856                errno = ENOENT;
    850857                TALLOC_FREE(frame);
    851858                return -1;
Note: See TracChangeset for help on using the changeset viewer.