Skip to content

Commit aab964b

Browse files
committed
Fix some uses of str[n]casecmp that should be pg_str[n]casecmp.
1 parent a22de54 commit aab964b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/hstore/hstore_io.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ parse_hstore( HSParser *state ) {
166166
state->pairs[ state->pcur ].needfree = true;
167167
if ( state->cur - state->word == 4 && !escaped) {
168168
state->word[4] = '\0';
169-
if ( 0==strcasecmp(state->word, "null") )
169+
if ( 0==pg_strcasecmp(state->word, "null") )
170170
state->pairs[ state->pcur ].isnull=true;
171171
}
172172
state->word=NULL;

0 commit comments

Comments
 (0)