aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2000-05-07 19:46:33 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2000-05-07 19:46:33 +0000
commitfd75cc902ef3be3e07b57e316a911f2c8233b577 (patch)
treecf766752702c524f31ab4fff1dcf5b6c7362c81c /lib
parent327ad7e53054ade8d1c7ace5b45524719c3b6242 (diff)
downloadsrc-fd75cc902ef3be3e07b57e316a911f2c8233b577.tar.gz
src-fd75cc902ef3be3e07b57e316a911f2c8233b577.zip
Add offset field to struct url
Notes
Notes: svn path=/head/; revision=60183
Diffstat (limited to 'lib')
-rw-r--r--lib/libfetch/fetch.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libfetch/fetch.h b/lib/libfetch/fetch.h
index 23667911b993..0810ba69117a 100644
--- a/lib/libfetch/fetch.h
+++ b/lib/libfetch/fetch.h
@@ -40,6 +40,7 @@
#define URL_PWDLEN 256
struct url {
+ off_t offset;
char scheme[URL_SCHEMELEN+1];
char user[URL_USERLEN+1];
char pwd[URL_PWDLEN+1];