diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-09-23 16:06:47 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-09-23 16:06:47 -0500 |
commit | 8ade4e21303eb4feed76a9d8b26545f65dcc708a (patch) | |
tree | 09aab4dd68a90e07f038013f2836c4e1a10b81d7 /libk3b/tools/k3biso9660.h | |
parent | 1c60648ff88c6ea1f7dc5257154d6022cb2f97a1 (diff) | |
download | k3b-8ade4e21303eb4feed76a9d8b26545f65dcc708a.tar.gz k3b-8ade4e21303eb4feed76a9d8b26545f65dcc708a.zip |
Update libisofs to read files greater than 2GB
This partially resolves Bug 1111
Diffstat (limited to 'libk3b/tools/k3biso9660.h')
-rw-r--r-- | libk3b/tools/k3biso9660.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libk3b/tools/k3biso9660.h b/libk3b/tools/k3biso9660.h index 246fb67..c25ef48 100644 --- a/libk3b/tools/k3biso9660.h +++ b/libk3b/tools/k3biso9660.h @@ -38,7 +38,7 @@ struct iso_directory_record; struct el_torito_boot_descriptor; struct iso_primary_descriptor; -typedef long sector_t; +typedef long long sector_t; @@ -437,7 +437,7 @@ class LIBK3B_EXPORT K3bIso9660 int m_joliet; // only used for creation - static int read_callback( char* buf, sector_t start, int len, void* udata ); + static int read_callback( char* buf, sector_t start, long long len, void* udata ); static int isofs_callback( struct iso_directory_record* idr, void *udata ); K3bIso9660Directory *dirent; bool m_rr; |