Fix parsing of compatibility mode argument.

Patch by Ashutosh Sharma <ashu.coek88@gmail.com>
This commit is contained in:
Michael Meskes 2018-01-12 15:59:43 +01:00
parent 49c784ece7
commit ca4587f3f9
1 changed files with 2 additions and 2 deletions

View File

@ -198,12 +198,12 @@ main(int argc, char *const argv[])
system_includes = true;
break;
case 'C':
if (strncmp(optarg, "INFORMIX", strlen("INFORMIX")) == 0)
if (pg_strcasecmp(optarg, "INFORMIX") == 0 || pg_strcasecmp(optarg, "INFORMIX_SE") == 0)
{
char pkginclude_path[MAXPGPATH];
char informix_path[MAXPGPATH];
compat = (strcmp(optarg, "INFORMIX") == 0) ? ECPG_COMPAT_INFORMIX : ECPG_COMPAT_INFORMIX_SE;
compat = (pg_strcasecmp(optarg, "INFORMIX") == 0) ? ECPG_COMPAT_INFORMIX : ECPG_COMPAT_INFORMIX_SE;
get_pkginclude_path(my_exec_path, pkginclude_path);
snprintf(informix_path, MAXPGPATH, "%s/informix/esql", pkginclude_path);
add_include_path(informix_path);