diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-11-22 19:06:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-11-22 19:06:27 +0000 |
commit | bd547139c77f2f3bb581d329e70c2c5cd246a3ab (patch) | |
tree | f7b20ca29fca4b81fe969c7f4ebe06e2e5f7599b /nscd/pwdcache.c | |
parent | 8522a053940d49e11cbb1a839b4e9ae62f9fad4a (diff) | |
download | glibc-bd547139c77f2f3bb581d329e70c2c5cd246a3ab.tar.gz glibc-bd547139c77f2f3bb581d329e70c2c5cd246a3ab.tar.xz glibc-bd547139c77f2f3bb581d329e70c2c5cd246a3ab.zip |
* nscd/connections.c (sendfileall): Define.
(handle_request): Use it instead of sendfile call. * nscd/nscd-client.h: Declare sendfileall. * nscd/aicache.c: Use sendfileall instead of sendfile. * nscd/grpcache.c: Likewise. * nscd/hstcache.c: Likewise. * nscd/initgrcache.c: Likewise. * nscd/pwdcache.c: Likewise.
Diffstat (limited to 'nscd/pwdcache.c')
-rw-r--r-- | nscd/pwdcache.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/nscd/pwdcache.c b/nscd/pwdcache.c index 6f4b032d10..c3039c89c4 100644 --- a/nscd/pwdcache.c +++ b/nscd/pwdcache.c @@ -32,9 +32,6 @@ #include <time.h> #include <unistd.h> #include <sys/mman.h> -#ifdef HAVE_SENDFILE -# include <sys/sendfile.h> -#endif #include <sys/socket.h> #include <stackinfo.h> @@ -305,8 +302,9 @@ cache_addpw (struct database_dyn *db, int fd, request_header *req, <= (sizeof (struct database_pers_head) + db->head->module * sizeof (ref_t) + db->head->data_size)); - off_t off = (char *) &dataset->resp - (char *) db->head; - written = sendfile (fd, db->wr_fd, &off, total); + written = sendfileall (fd, db->wr_fd, + (char *) &dataset->resp + - (char *) db->head, total); # ifndef __ASSUME_SENDFILE if (written == -1 && errno == ENOSYS) goto use_write; |