diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-15 21:35:30 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-15 21:35:30 +0000 |
commit | aab964b3115b209b6c19872d820979fd6a3b286f (patch) | |
tree | e6560ff6229fbdfda17d6eee67ce8fd90c57913c | |
parent | a22de540cf4546fa81793a1503f3035b39dee9fa (diff) | |
download | postgresql-aab964b3115b209b6c19872d820979fd6a3b286f.tar.gz postgresql-aab964b3115b209b6c19872d820979fd6a3b286f.zip |
Fix some uses of str[n]casecmp that should be pg_str[n]casecmp.
-rw-r--r-- | contrib/hstore/hstore_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/hstore/hstore_io.c b/contrib/hstore/hstore_io.c index 1faecadf6ec..b905ff7f3d5 100644 --- a/contrib/hstore/hstore_io.c +++ b/contrib/hstore/hstore_io.c @@ -166,7 +166,7 @@ parse_hstore( HSParser *state ) { state->pairs[ state->pcur ].needfree = true; if ( state->cur - state->word == 4 && !escaped) { state->word[4] = '\0'; - if ( 0==strcasecmp(state->word, "null") ) + if ( 0==pg_strcasecmp(state->word, "null") ) state->pairs[ state->pcur ].isnull=true; } state->word=NULL; |