Changeset 223 for branches/samba-3.3.x/source/libsmb/libsmb_file.c
- Timestamp:
- May 24, 2009, 7:51:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/libsmb/libsmb_file.c
r221 r223 119 119 &targetcli, &targetpath)) { 120 120 d_printf("Could not resolve %s\n", path); 121 errno = ENOENT; 121 122 SAFE_FREE(file); 122 123 TALLOC_FREE(frame); … … 299 300 &targetcli, &targetpath)) { 300 301 d_printf("Could not resolve %s\n", path); 302 errno = ENOENT; 301 303 TALLOC_FREE(frame); 302 304 return -1; … … 388 390 &targetcli, &targetpath)) { 389 391 d_printf("Could not resolve %s\n", path); 392 errno = ENOENT; 390 393 TALLOC_FREE(frame); 391 394 return -1; … … 463 466 &targetcli, &targetpath)) { 464 467 d_printf("Could not resolve %s\n", path); 468 errno = ENOENT; 465 469 TALLOC_FREE(frame); 466 470 return -1; … … 545 549 &targetcli, &targetpath)) { 546 550 d_printf("Couldn't resolve %s\n", path); 551 errno = ENOENT; 547 552 TALLOC_FREE(frame); 548 553 return False; … … 757 762 &targetcli, &targetpath)) { 758 763 d_printf("Could not resolve %s\n", path); 764 errno = ENOENT; 759 765 TALLOC_FREE(frame); 760 766 return -1; … … 848 854 &targetcli, &targetpath)) { 849 855 d_printf("Could not resolve %s\n", path); 856 errno = ENOENT; 850 857 TALLOC_FREE(frame); 851 858 return -1;
Note:
See TracChangeset
for help on using the changeset viewer.