Changeset 251 for trunk/src/sh_unix.c
- Timestamp:
- Oct 1, 2009, 9:42:28 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sh_unix.c
r248 r251 3477 3477 err_open = errno; 3478 3478 3479 { 3480 char * stale = sl_check_stale(); 3481 3482 if (stale) 3483 { 3484 sh_error_handle(SH_ERR_ERR, FIL__, __LINE__, err_open, MSG_E_SUBGEN, 3485 stale, _("sh_unix_getinfo_open")); 3486 } 3487 } 3488 3479 3489 alert_timeout = 120; /* this is per 8K block now ! */ 3480 3490 … … 3505 3515 { 3506 3516 fstat_return = retry_fstat (FIL__, __LINE__, fd, &fbuf); 3517 3507 3518 if (fstat_return) 3508 fstat_errno = errno; 3519 { 3520 char * stale; 3521 3522 fstat_errno = errno; 3523 3524 stale = sl_check_stale(); 3525 3526 if (stale) 3527 { 3528 sh_error_handle(SH_ERR_ERR, FIL__, __LINE__, fstat_errno, 3529 MSG_E_SUBGEN, 3530 stale, _("sh_unix_getinfo_fstat")); 3531 } 3532 } 3509 3533 } 3510 3534 else
Note:
See TracChangeset
for help on using the changeset viewer.