diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2013-02-20 21:00:28 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-20 12:06:08 -0800 |
commit | c3c3dd84ac6a50280296a5cf601ac895b9702744 (patch) | |
tree | dbf68a2f06a8bf6d0a162fa13436158ae695bc5f /file.c | |
parent | 9f5a636c6abfa9b384c8defe47c35e752874d7d1 (diff) | |
download | subsurface-c3c3dd84ac6a50280296a5cf601ac895b9702744.tar.gz |
Change divelogs.de export file suffix from .ZIP to .DLD
As Rainer finished up the export function on divelogs.de, he
used DLD as a suffix instead.
Suggested-by: Rainer Mohr <mail@divelogs.de>
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -227,8 +227,8 @@ static int open_by_filename(const char *filename, const char *fmt, struct memblo if (!strcasecmp(fmt, "SDE")) return try_to_open_zip(filename, mem, error); - /* divelogs.de files: divelogsData.zip */ - if (!strcasecmp(fmt, "ZIP")) + /* divelogs.de files: DLD */ + if (!strcasecmp(fmt, "DLD")) return try_to_open_zip(filename, mem, error); /* Truly nasty intentionally obfuscated Cochran Anal software */ |