summaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorGravatar Henrik Brautaset Aronsen <subsurface@henrik.synth.no>2013-02-20 21:00:28 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-02-20 12:06:08 -0800
commitc3c3dd84ac6a50280296a5cf601ac895b9702744 (patch)
treedbf68a2f06a8bf6d0a162fa13436158ae695bc5f /file.c
parent9f5a636c6abfa9b384c8defe47c35e752874d7d1 (diff)
downloadsubsurface-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file.c b/file.c
index 967afb8b6..28022c85e 100644
--- a/file.c
+++ b/file.c
@@ -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 */