X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=parse-xml.c;h=cecfbb30417b9a167371540e6f67fae36599c926;hb=c6b13fad5aebdf7ee7f1b67da58512e49840a7c1;hp=24acb1c1cc9f7f003e490de5c732b503d6b20866;hpb=c7b9387d4bf624230ca2e317e7ac8cf5b4b81f0c;p=ext%2Fsubsurface.git diff --git a/parse-xml.c b/parse-xml.c index 24acb1c..cecfbb3 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -652,6 +652,7 @@ static int divinglog_dive_match(struct dive *dive, const char *name, int len, ch MATCH(".tanksize", cylindersize, &dive->cylinder[0].type.size) || MATCH(".presw", pressure, &dive->cylinder[0].type.workingpressure) || MATCH(".comments", utf8_string, &dive->notes) || + MATCH(".buddy.names", utf8_string, &dive->buddy) || MATCH(".country.name", utf8_string, &country) || MATCH(".city.name", utf8_string, &city) || MATCH(".place.name", divinglog_place, &dive->location) || @@ -953,6 +954,10 @@ static void try_to_fill_dive(struct dive *dive, const char *name, char *buf) return; if (MATCH(".notes", utf8_string, &dive->notes)) return; + if (MATCH(".divemaster", utf8_string, &dive->divemaster)) + return; + if (MATCH(".buddy", utf8_string, &dive->buddy)) + return; if (MATCH(".cylinder.size", cylindersize, &dive->cylinder[cylinder_index].type.size)) return;