summaryrefslogtreecommitdiffstats
path: root/crypt.c
diff options
context:
space:
mode:
authorBrendan Cully <brendan@kublai.com>2005-10-21 04:35:37 +0000
committerBrendan Cully <brendan@kublai.com>2005-10-21 04:35:37 +0000
commit57b2680edee942497d9752e8be5741b181493a50 (patch)
treec6761a63c9ea591556fec61486d3d5fdc096ece7 /crypt.c
parentd6fb4ea49daf00a0747cc7de75cc6289e539027e (diff)
Full large file support. Keep a close watch on your mailboxes everyone!
Diffstat (limited to 'crypt.c')
-rw-r--r--crypt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypt.c b/crypt.c
index 3afbd9ae..0f08f2a6 100644
--- a/crypt.c
+++ b/crypt.c
@@ -504,7 +504,7 @@ int crypt_write_signed(BODY *a, STATE *s, const char *tempfile)
return -1;
}
- fseek (s->fpin, a->hdr_offset, 0);
+ fseeko (s->fpin, a->hdr_offset, 0);
bytes = a->length + a->offset - a->hdr_offset;
hadcr = 0;
while (bytes > 0)