Skip to content

Commit d216f6e

Browse files
committed
Fix a message error in utf_to_local
1 parent 0b471cc commit d216f6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/mb/conv.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* WIN1250 client encoding support contributed by Pavel Behal
77
* SJIS UDC (NEC selection IBM kanji) support contributed by Eiji Tokuya
88
*
9-
* $Id: conv.c,v 1.25 2001/04/29 07:27:38 ishii Exp $
9+
* $Id: conv.c,v 1.25.2.1 2001/05/28 01:01:09 ishii Exp $
1010
*
1111
*
1212
*/
@@ -1287,7 +1287,7 @@ utf_to_local(unsigned char *utf, unsigned char *iso,
12871287
sizeof(pg_utf_to_local), compare1);
12881288
if (p == NULL)
12891289
{
1290-
elog(NOTICE, "utf_to_latin: could not convert UTF-8 (0x%04x) Ignored", iutf);
1290+
elog(NOTICE, "utf_to_local: could not convert UTF-8 (0x%04x). Ignored", iutf);
12911291
continue;
12921292
}
12931293
if (p->code & 0xff000000)

0 commit comments

Comments
 (0)