Changeset 309 for trunk/src/ows/ows_config.c
- Timestamp:
- 07/09/10 17:10:55 (19 months ago)
- Files:
-
- 1 modified
-
trunk/src/ows/ows_config.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ows/ows_config.c
r293 r309 64 64 a = xmlTextReaderGetAttribute(r, (xmlChar *) "degree_precision"); 65 65 if (a != NULL) { 66 o->schema_dir = buffer_init();67 66 precision = atoi((char *) a); 68 67 if (precision > 0 && precision < 12) … … 73 72 a = xmlTextReaderGetAttribute(r, (xmlChar *) "meter_precision"); 74 73 if (a != NULL) { 75 o->schema_dir = buffer_init();76 74 precision = atoi((char *) a); 77 75 if (precision > 0 && precision < 12)