diff options
author | Günther Deschner <gd@samba.org> | 2007-08-29 14:08:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:30:21 -0500 |
commit | 6824731cb09dcf736f5282d55723fffb253cec95 (patch) | |
tree | 2828c17a2d79ade4c88c8b87e8fcc09a53a8c883 /source3/libgpo | |
parent | 1a13b09894ea8f6424cb904c83a4cd6214040e89 (diff) | |
download | samba-6824731cb09dcf736f5282d55723fffb253cec95.tar.gz samba-6824731cb09dcf736f5282d55723fffb253cec95.tar.xz samba-6824731cb09dcf736f5282d55723fffb253cec95.zip |
r24783: Remove unused off_t type.
Guenther
(This used to be commit 85c816c27f2b9d20dfaf411b12ec1803a49574ce)
Diffstat (limited to 'source3/libgpo')
-rw-r--r-- | source3/libgpo/gpo_filesync.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/libgpo/gpo_filesync.c b/source3/libgpo/gpo_filesync.c index cb49dcbda7..81fdab3ee9 100644 --- a/source3/libgpo/gpo_filesync.c +++ b/source3/libgpo/gpo_filesync.c @@ -44,7 +44,6 @@ NTSTATUS gpo_copy_file(TALLOC_CTX *mem_ctx, char *data = NULL; static int io_bufsize = 64512; int read_size = io_bufsize; - off_t start = 0; off_t nread = 0; if ((fnum = cli_open(cli, nt_path, O_RDONLY, DENY_NONE)) == -1) { @@ -64,7 +63,7 @@ NTSTATUS gpo_copy_file(TALLOC_CTX *mem_ctx, while (1) { - int n = cli_read(cli, fnum, data, nread + start, read_size); + int n = cli_read(cli, fnum, data, nread, read_size); if (n <= 0) break; |