diff options
author | vh115876 <none@none> | 2006-01-17 06:20:18 -0800 |
---|---|---|
committer | vh115876 <none@none> | 2006-01-17 06:20:18 -0800 |
commit | cb4c2b01e39d41afd1414108d5f7f13ba93417fd (patch) | |
tree | 1fcee2c864878826872b16f42a52de92b6e8d71e /usr/src/psm | |
parent | 5f9e250aa611c12bbaccc0be612e5b97ccca2762 (diff) | |
download | illumos-gate-cb4c2b01e39d41afd1414108d5f7f13ba93417fd.tar.gz |
6307652 libwanboot does not handle >2GB files properly (fix lint)
Diffstat (limited to 'usr/src/psm')
-rw-r--r-- | usr/src/psm/stand/boot/sparc/common/wanboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/psm/stand/boot/sparc/common/wanboot.c b/usr/src/psm/stand/boot/sparc/common/wanboot.c index 6331cfd3ad..236746d9f6 100644 --- a/usr/src/psm/stand/boot/sparc/common/wanboot.c +++ b/usr/src/psm/stand/boot/sparc/common/wanboot.c @@ -610,7 +610,7 @@ get_url(char *name, url_t *url) */ static int establish_http_connection(const char *what, http_handle_t *handlep, - url_t *url, off64_t offset) + url_t *url, offset_t offset) { static boolean_t is_auth_file_init = B_FALSE; static boolean_t is_proxy_init = B_FALSE; |