From: Linus Torvalds Date: Fri, 23 Sep 2011 03:51:03 +0000 (-0700) Subject: Drop surface events when reading from an XML file too X-Git-Url: http://git.tdb.fi/?p=ext%2Fsubsurface.git;a=commitdiff_plain;h=d9ca1b6fbf42b15b597e51f018fdb5df65ee2c29 Drop surface events when reading from an XML file too Remember those useless surface events that we ignore when we import a dive from a dive computer? Yeah, they exist in the libdivelog xml files too. So ignore them when we see them there too. Signed-off-by: Linus Torvalds --- diff --git a/parse-xml.c b/parse-xml.c index e647273..50f83f6 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -1175,7 +1175,7 @@ static void event_start(void) static void event_end(void) { - if (event.name) + if (event.name && strcmp(event.name, "surface") != 0) add_event(dive, event.time.seconds, event.type, event.flags, event.value, event.name); event.active = 0; }