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_setget.c

    r206 r221  
    660660}
    661661
     662smbc_statvfs_fn
     663smbc_getFunctionStatVFS(SMBCCTX *c)
     664{
     665        return c->internal->posix_emu.statvfs_fn;
     666}
     667
     668void
     669smbc_setFunctionStatVFS(SMBCCTX *c, smbc_statvfs_fn fn)
     670{
     671        c->internal->posix_emu.statvfs_fn = fn;
     672}
     673
     674smbc_fstatvfs_fn
     675smbc_getFunctionFstatVFS(SMBCCTX *c)
     676{
     677        return c->internal->posix_emu.fstatvfs_fn;
     678}
     679
     680void
     681smbc_setFunctionFstatVFS(SMBCCTX *c, smbc_fstatvfs_fn fn)
     682{
     683        c->internal->posix_emu.fstatvfs_fn = fn;
     684}
     685
    662686smbc_ftruncate_fn
    663687smbc_getFunctionFtruncate(SMBCCTX *c)
Note: See TracChangeset for help on using the changeset viewer.