Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/lib/util/fsusage.c

    r414 r988  
    129129#endif /* STAT_STATFS4 */
    130130
    131 #if defined(STAT_STATVFS) || defined(STAT_STATVFS64)            /* SVR4 */
     131#if defined(STAT_STATVFS)               /* SVR4 */
    132132#ifdef HAVE_FRSIZE
    133133# define CONVERT_BLOCKS(B) \
     
    138138#endif
    139139
    140 #ifdef STAT_STATVFS64
    141         struct statvfs64 fsd;
    142         if (statvfs64(path, &fsd) < 0) return -1;
    143 #else
    144140        struct statvfs fsd;
    145141        if (statvfs(path, &fsd) < 0) return -1;
    146 #endif
    147142
    148143        /* f_frsize isn't guaranteed to be supported.  */
Note: See TracChangeset for help on using the changeset viewer.