Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | r17021: remove unsupported smbwrapper code | Gerald Carter | 2007-10-10 | 1 | -276/+0 |
| | |||||
* | r516: On GNU/Linux distributions which allow to use both 2.4 and 2.6 kernels | Alexander Bokovoy | 2007-10-10 | 1 | -0/+13 |
| | | | | | | | | | there is SYS_utimes syscall defined at compile time in glibc-kernheaders but it is available on 2.6 kernels only. Therefore, we can't rely on syscall at compile time but have to check that behaviour during program execution. An easy workaround is to have replacement for utimes() implemented within our wrapper and do not rely on syscall at all. Thus, if REPLACE_UTIME is defined already (by packager), skip these syscall shortcuts. | ||||
* | Removed version number from file header. | Tim Potter | 2002-01-30 | 1 | -2/+1 |
| | | | | Changed "SMB/Netbios" to "SMB/CIFS" in file header. | ||||
* | first pass at updating head branch to be to be the same as the SAMBA_2_0 branch | Andrew Tridgell | 1999-12-13 | 1 | -43/+0 |
| | |||||
* | Return a #error if no functions could be found to wrap around. | Tim Potter | 1999-06-13 | 1 | -0/+43 |
| | |||||
* | some versions of Irix pass the HAVE__ACL test but don't have acl.h | Herb Lewis | 1998-10-29 | 1 | -1/+1 |
| | | | | test for both before including ACL support. | ||||
* | fixed fork() on SunOS4 | Andrew Tridgell | 1998-10-07 | 1 | -1/+1 |
| | |||||
* | yet another attempt at making this stuff portable. This time I use | Andrew Tridgell | 1998-10-07 | 1 | -8/+14 |
| | | | | minimal includes in wrapped.c | ||||
* | possibly use __sys_llseek() | Andrew Tridgell | 1998-10-07 | 1 | -0/+2 |
| | |||||
* | more OSF1 changes as well as changes to allow us to use the standard | Andrew Tridgell | 1998-10-07 | 1 | -0/+3 |
| | | | | includes.h in wrapped.c, thus making porting much simpler | ||||
* | fixed a bug in real_seekdir() | Andrew Tridgell | 1998-10-07 | 1 | -1/+1 |
| | |||||
* | added a wrapper for fork() | Andrew Tridgell | 1998-10-06 | 1 | -0/+8 |
| | | | | | in a fork we have to close all server connections otherwise we can end up with two processes writing to the same socket. | ||||
* | - keep IRIX cc -64 happy | Andrew Tridgell | 1998-10-05 | 1 | -10/+10 |
| | | | | - fixed a chdir bug | ||||
* | got smbwrapper working on IRIX 6.4. Things got a bit tricky, | Andrew Tridgell | 1998-10-05 | 1 | -0/+9 |
| | | | | especially as the headers get the syscall numbers wrong! | ||||
* | this gets it compiling under IRIX 6.4. Doesn't work yet though. | Andrew Tridgell | 1998-10-05 | 1 | -1/+9 |
| | |||||
* | handle systems that are missing either SYS_utime or SYS_utimes | Andrew Tridgell | 1998-10-05 | 1 | -1/+6 |
| | |||||
* | ported smbwrapper to SunOS4. It seems to work. pity so many binaries on | Andrew Tridgell | 1998-10-05 | 1 | -3/+6 |
| | | | | my SunOS box are statically linked. | ||||
* | need to use SYS_open64 not _open64 for solaris 2.6 or stdio doesn't | Andrew Tridgell | 1998-10-05 | 1 | -6/+1 |
| | | | | work right. | ||||
* | - added pread pread64 pwrite pwrite64 and open64 | Andrew Tridgell | 1998-10-05 | 1 | -0/+31 |
| | | | | - fixed utime() for null tbuf | ||||
* | this gets smbwrapper working under Solaris 2.6. Not tested much yet. | Andrew Tridgell | 1998-10-05 | 1 | -0/+31 |
| | |||||
* | we need to use __readdir() in preference to SYS_readdir for systems | Andrew Tridgell | 1998-10-04 | 1 | -2/+2 |
| | | | | that use getdents. | ||||
* | more solaris 2.5 fixups. It now seems to be working pretty well. | Andrew Tridgell | 1998-10-04 | 1 | -2/+22 |
| | |||||
* | fixed some stuff for Linux that porting to Solaris broke | Andrew Tridgell | 1998-10-04 | 1 | -27/+31 |
| | |||||
* | started basic support for solaris 2.5 in smbwrapper. | Andrew Tridgell | 1998-10-04 | 1 | -16/+85 |
| | |||||
* | add support for dup() and dup2() | Andrew Tridgell | 1998-10-04 | 1 | -2/+2 |
| | |||||
* | refuse symlinks to or from a smb path | Andrew Tridgell | 1998-10-04 | 1 | -0/+1 |
| | |||||
* | simplied the layout of the smbwrapper code. All those 3 line files | Andrew Tridgell | 1998-10-04 | 1 | -4/+21 |
| | | | | were getting unwieldy | ||||
* | use __XXXdir() instead of __libc_XXXdir() | Andrew Tridgell | 1998-10-03 | 1 | -6/+5 |
| | |||||
* | drat. | Andrew Tridgell | 1998-10-03 | 1 | -1/+6 |
| | | | | | | | on Linux 2.0 libc detects the lack of getdents in the kernel and used opendir() etc. so we need to implement those ... it would be needed for a port to others OSes anyway I suppose. | ||||
* | added fchdir() support | Andrew Tridgell | 1998-10-03 | 1 | -1/+1 |
| | |||||
* | added mkdir() and rmdir() support | Andrew Tridgell | 1998-10-03 | 1 | -0/+2 |
| | |||||
* | added lseek() support for directories | Andrew Tridgell | 1998-10-03 | 1 | -0/+1 |
| | |||||
* | lots of improvements to smbwrapper. It now works with Samba, Win95 and | Andrew Tridgell | 1998-10-03 | 1 | -0/+1 |
| | | | | WinNT servers, and correctly lists share names in /smb/SERVER/ | ||||
* | the guts of the smbwrapper code. I may change the layout of this at | Andrew Tridgell | 1998-10-02 | 1 | -0/+44 |
some stage. |