[GRASS-SVN] r48023 - grass/trunk/vector/v.edit

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Sep 1 07:17:55 EDT 2011


Author: martinl
Date: 2011-09-01 04:17:54 -0700 (Thu, 01 Sep 2011)
New Revision: 48023

Modified:
   grass/trunk/vector/v.edit/main.c
Log:
v.edit: replace G_strcasecmp() with strcmp()


Modified: grass/trunk/vector/v.edit/main.c
===================================================================
--- grass/trunk/vector/v.edit/main.c	2011-09-01 11:11:44 UTC (rev 48022)
+++ grass/trunk/vector/v.edit/main.c	2011-09-01 11:17:54 UTC (rev 48023)
@@ -69,7 +69,7 @@
     }
 
     /* open input file */
-    if (G_strcasecmp(params.in->answer, "-") == 0 ||
+    if (strcmp(params.in->answer, "-") == 0 ||
 	(action_mode != MODE_CREATE && params.in->answer == NULL)) {
 	ascii = stdin;
     }



More information about the grass-commit mailing list