Opened 17 years ago

Closed 17 years ago

#2267 closed defect (fixed)

Error generating mapfile - grid minarcs takes value of maxarcs

Reported by: guycarpenter Owned by: sdlime
Priority: normal Milestone: 5.0 release
Component: MapServer C Library Version: svn-trunk (development)
Severity: normal Keywords:
Cc:

Description

There is a typo in the trunk version of mapfile.c:782 which causes the value of MINARCS to be incorrectly printed using the value of apGraticule->maxarcs instead of pGraticule->minarcs. As a result, mapfiles generated programmatically using the mapserver API show an incorrect value for MINARCS.

This line:

782 fprintf( stream, " MINARCS %g\n",pGraticule->maxarcs);

Should read:

782 fprintf( stream, " MINARCS %g\n",pGraticule->minarcs);

Change History (1)

comment:1 by hobu, 17 years ago

Milestone: 5.0 release
Resolution: fixed
Status: newclosed

Fixed in r6717

Note: See TracTickets for help on using tickets.