~ubuntu-branches/ubuntu/trusty/postgis/trusty-updates

« back to all changes in this revision

Viewing changes to loader/pgsql2shp-core.c

  • Committer: Package Import Robot
  • Author(s): Markus Wanner
  • Date: 2013-12-12 20:38:27 UTC
  • mfrom: (22.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20131212203827-l99pq9urf9emmm4r
Tags: 2.1.1-1
* New upstream release
* Drop patches upstream-r11979, upstream-r11983, upstream-r11990, and
  minor-r11979-correction; these are included in this release.
* control, rules, liblwgeom-2.1.*.{install,symbols}: adapt to new liblwgeom
  version.
* Adjust patch debian-versions: in doc/Makefile.comments, refer to
  Postgres 9.3, as that's now default. Set POSTGIS_LIBXML2_VERSION to
  2.9.1, as currently shipped.
* Adjust line numbers in patches honor-build-flags and link-liblwgeom

Show diffs side-by-side

added added

removed removed

Lines of Context:
1194
1194
                state->column_map_pgfieldnames[curmapsize][fieldnamesize] = '\0';
1195
1195
                
1196
1196
                /* Now swallow up any whitespace */
1197
 
                for (tmpstr = tmpptr; *tmpptr == '\t' || *tmpptr == '\n' || *tmpptr == ' '; tmpptr++);
 
1197
                for (tmpstr = tmpptr; *tmpptr == '\t' || *tmpptr == '\n' || *tmpptr == ' '; tmpptr++) {
 
1198
            ; /* Do nothing */
 
1199
        }
1198
1200
 
1199
1201
                /* Finally locate end of second column (dbffieldname) */
1200
1202
                for (tmpstr = tmpptr; *tmpptr != '\t' && *tmpptr != '\n' && *tmpptr != ' ' && *tmpptr != '\0'; tmpptr++);