diff options
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index a60c0a6520f..f7e9022e425 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2003, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.86 2004/03/22 03:38:24 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.87 2004/05/07 00:24:58 tgl Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -317,7 +317,7 @@ helpSQL(const char *topic, unsigned short int pager) /* Count newlines for pager */ for (i = 0; QL_HELP[i].cmd; i++) { - if (strncasecmp(topic, QL_HELP[i].cmd, len) == 0 || + if (pg_strncasecmp(topic, QL_HELP[i].cmd, len) == 0 || strcmp(topic, "*") == 0) { nl_count += 5; @@ -325,7 +325,7 @@ helpSQL(const char *topic, unsigned short int pager) if (*ch == '\n') nl_count++; /* If we have an exact match, exit. Fixes \h SELECT */ - if (strcasecmp(topic, QL_HELP[i].cmd) == 0) + if (pg_strcasecmp(topic, QL_HELP[i].cmd) == 0) break; } } @@ -334,7 +334,7 @@ helpSQL(const char *topic, unsigned short int pager) for (i = 0; QL_HELP[i].cmd; i++) { - if (strncasecmp(topic, QL_HELP[i].cmd, len) == 0 || + if (pg_strncasecmp(topic, QL_HELP[i].cmd, len) == 0 || strcmp(topic, "*") == 0) { help_found = true; @@ -345,7 +345,7 @@ helpSQL(const char *topic, unsigned short int pager) gettext(QL_HELP[i].help), gettext(QL_HELP[i].syntax)); /* If we have an exact match, exit. Fixes \h SELECT */ - if (strcasecmp(topic, QL_HELP[i].cmd) == 0) + if (pg_strcasecmp(topic, QL_HELP[i].cmd) == 0) break; } } |