diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-09-06 11:31:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:17:44 -0500 |
commit | 3ca73facc59ed8a97abbc28c1b4bedde87e109a6 (patch) | |
tree | 6959d7d7e546cf8be7e57eb9bcd1cdfb1170b412 /source4/lib/tdb/common | |
parent | d093b28b55bac53c32cf3bf35424ca967b55bfc5 (diff) | |
download | samba-3ca73facc59ed8a97abbc28c1b4bedde87e109a6.tar.gz samba-3ca73facc59ed8a97abbc28c1b4bedde87e109a6.tar.bz2 samba-3ca73facc59ed8a97abbc28c1b4bedde87e109a6.zip |
r18160: - pread and pwrite replacements need to be non-static
- replacing rename() is pointless - all platforms have it (and the
#define of rename breaks some code)
- use system/locale.h in snprintf.c
- fix passwd.h for initgroups
- stdlib is in replace.h, not needed elsewhere
- fix the initgroups replacement
- fix mapping of dl functions to rep_*
(This used to be commit 57cd0ca176387d6a3acabf9fedeef4f2a3a3dad7)
Diffstat (limited to 'source4/lib/tdb/common')
-rw-r--r-- | source4/lib/tdb/common/io.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/source4/lib/tdb/common/io.c b/source4/lib/tdb/common/io.c index 21d591b67d..d0ef94831d 100644 --- a/source4/lib/tdb/common/io.c +++ b/source4/lib/tdb/common/io.c @@ -29,28 +29,6 @@ #include "tdb_private.h" -#ifndef HAVE_PREAD - static ssize_t pread(int fd, void *buf, size_t count, off_t offset) -{ - if (lseek(fd, offset, SEEK_SET) != offset) { - errno = EIO; - return -1; - } - return read(fd, buf, count); -} -#endif - -#ifndef HAVE_PWRITE - static ssize_t pwrite(int fd, const void *buf, size_t count, off_t offset) -{ - if (lseek(fd, offset, SEEK_SET) != offset) { - errno = EIO; - return -1; - } - return write(fd, buf, count); -} -#endif - /* check for an out of bounds access - if it is out of bounds then see if the database has been expanded by someone else and expand if necessary |