File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -131,14 +131,9 @@ void ows_service_identification(const ows * o)
131131 }
132132
133133 fprintf (o -> output , " <ows:ServiceType>%s</ows:ServiceType>\n" , o -> metadata -> type -> buf );
134- fprintf (o -> output , " <ows:ServiceTypeVersion>" );
134+ for (ln = o -> metadata -> versions -> first ; ln ; ln = ln -> next )
135+ fprintf (o -> output , " <ows:ServiceTypeVersion>%s</ows:ServiceTypeVersion>\n" , ln -> value -> buf );
135136
136- for (ln = o -> metadata -> versions -> first ; ln ; ln = ln -> next ) {
137- fprintf (o -> output , "%s" , ln -> value -> buf );
138- if (ln -> next ) fprintf (o -> output , "," );
139- }
140-
141- fprintf (o -> output , "</ows:ServiceTypeVersion>\n" );
142137
143138 if (o -> metadata -> fees )
144139 fprintf (o -> output , " <ows:Fees>%s</ows:Fees>\n" , o -> metadata -> fees -> buf );
You can’t perform that action at this time.
0 commit comments