Changeset 988 for vendor/current/examples/libsmbclient/teststatvfs.c
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/examples/libsmbclient/teststatvfs.c
r414 r988 12 12 int main(int argc, char * argv[]) 13 13 { 14 int i;15 int fd;16 14 int ret; 17 15 int debug = 0; 18 16 char * p; 19 17 char path[2048]; 20 struct stat statbuf;21 18 struct statvfs statvfsbuf; 22 19 … … 62 59 printf("Available Files: %llu\n", 63 60 (unsigned long long) statvfsbuf.f_favail); 61 #ifdef HAVE_FSID_INT 64 62 printf("File System ID: %lu\n", 65 63 (unsigned long) statvfsbuf.f_fsid); 64 #endif 66 65 printf("\n"); 67 66
Note:
See TracChangeset
for help on using the changeset viewer.