diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2013-02-21 08:49:06 +0530 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-20 20:24:39 -0800 |
commit | 49b4f7c4acea69bb3075d9555dbd4d58f16a9f56 (patch) | |
tree | 2c5b4cb1c7d72aa3f19a299fa931524eda787a04 /file.c | |
parent | ff1c33401bba25ab02efdcd23e52a3c3a14ab1b6 (diff) | |
download | subsurface-49b4f7c4acea69bb3075d9555dbd4d58f16a9f56.tar.gz |
Display the filename on error message
Display the filename in error message instead of just text 'ZIP file'
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -62,7 +62,7 @@ out: #ifdef LIBZIP #include <zip.h> -static void zip_read(struct zip_file *file, GError **error) +static void zip_read(struct zip_file *file, GError **error, const char *filename) { int size = 1024, n, read = 0; char *mem = malloc(size); @@ -72,7 +72,7 @@ static void zip_read(struct zip_file *file, GError **error) size = read * 3 / 2; mem = realloc(mem, size); } - parse_xml_buffer(_("ZIP file"), mem, read, &dive_table, error); + parse_xml_buffer(filename, mem, read, &dive_table, error); free(mem); } #endif @@ -90,7 +90,7 @@ static int try_to_open_zip(const char *filename, struct memblock *mem, GError ** struct zip_file *file = zip_fopen_index(zip, index, 0); if (!file) break; - zip_read(file, error); + zip_read(file, error, filename); zip_fclose(file); success++; } |