]> granicus.if.org Git - postgis/commitdiff
Fixed return code from shp2pgsql
authorSandro Santilli <strk@keybit.net>
Thu, 13 Oct 2005 13:40:15 +0000 (13:40 +0000)
committerSandro Santilli <strk@keybit.net>
Thu, 13 Oct 2005 13:40:15 +0000 (13:40 +0000)
git-svn-id: http://svn.osgeo.org/postgis/branches/pgis_1_0@1962 b70326c6-7e19-0410-871a-916f4a2858ee

CHANGES
loader/shp2pgsql.c

diff --git a/CHANGES b/CHANGES
index bf61f97fc61d0016945adf915935d3eb018d1f0a..7075810093b4633dd9924a13c1e42ef5a1937bf3 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,7 @@ PostGIS 1.0.5CVS
        - New "Reporting Bugs" chapter in manual
        - Segfault fix in shp2pgsql (utf8 encoding)
        - Fixed computation of null values fraction in analyzer
+       - Fixed return code of shp2pgsql
 
 PostGIS 1.0.4
 2005/09/09
index 0a00af376c1c51a2594b36a57eb572e6098e79c3..c069d103c3bae041c6674a1a28ca54f788a74e11 100644 (file)
@@ -410,7 +410,7 @@ main (int ARGC, char **ARGV)
        printf("END;\n"); // End the last transaction
 
 
-       return(1);
+       return 0; 
 }//end main()
 
 void
@@ -1660,6 +1660,9 @@ utf8 (const char *fromcode, char *inputbuf)
 
 /**********************************************************************
  * $Log$
+ * Revision 1.88.2.9  2005/10/13 13:40:15  strk
+ * Fixed return code from shp2pgsql
+ *
  * Revision 1.88.2.8  2005/09/30 08:59:21  strk
  * Fixed release of stack memory occurring when shp2pgsql is compiled with USE_ICONV defined, an attribute value needs to be escaped and no -W is used
  *