Ignore:
Timestamp:
May 24, 2009, 7:17:10 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 to 3.3.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/libsmb/libsmb_compat.c

    r206 r221  
    331331
    332332int
     333smbc_statvfs(char *path,
     334             struct statvfs *st)
     335{
     336        return smbc_getFunctionStatVFS(statcont)(statcont, path, st);
     337}
     338
     339int
     340smbc_fstatvfs(int fd,
     341              struct statvfs *st)
     342{
     343        SMBCFILE * file = find_fd(fd);
     344        return smbc_getFunctionFstatVFS(statcont)(statcont, file, st);
     345}
     346
     347int
    333348smbc_ftruncate(int fd,
    334349               off_t size)
Note: See TracChangeset for help on using the changeset viewer.