Changeset 251 for trunk/src/sh_unix.c


Ignore:
Timestamp:
Oct 1, 2009, 9:42:28 PM (15 years ago)
Author:
katerina
Message:

Improved logic for interpreting /proc/net/udp,tcp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_unix.c

    r248 r251  
    34773477        err_open = errno;
    34783478
     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
    34793489      alert_timeout = 120; /* this is per 8K block now ! */
    34803490
     
    35053515    {
    35063516      fstat_return = retry_fstat (FIL__, __LINE__, fd, &fbuf);
     3517
    35073518      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        }
    35093533    }
    35103534  else
Note: See TracChangeset for help on using the changeset viewer.