Browse Source

v.edit: replace G_strcasecmp() with strcmp()

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@48023 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 13 years ago
parent
commit
c28221c169
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vector/v.edit/main.c

+ 1 - 1
vector/v.edit/main.c

@@ -69,7 +69,7 @@ int main(int argc, char *argv[])
     }
 
     /* 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;
     }