summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2001-05-28 01:01:09 +0000
committerTatsuo Ishii <ishii@postgresql.org>2001-05-28 01:01:09 +0000
commitd216f6ec8f266d64fc00ab4b18871fbae4ee17e7 (patch)
tree77043bd05614e6baa6ab6264d9a68996ccb3e6b3 /src
parent0b471cc338777b84f3510b124aeaa7de75572848 (diff)
Fix a message error in utf_to_local
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/mb/conv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/mb/conv.c b/src/backend/utils/mb/conv.c
index 99e7eafbc7c..9b731873c79 100644
--- a/src/backend/utils/mb/conv.c
+++ b/src/backend/utils/mb/conv.c
@@ -6,7 +6,7 @@
* WIN1250 client encoding support contributed by Pavel Behal
* SJIS UDC (NEC selection IBM kanji) support contributed by Eiji Tokuya
*
- * $Id: conv.c,v 1.25 2001/04/29 07:27:38 ishii Exp $
+ * $Id: conv.c,v 1.25.2.1 2001/05/28 01:01:09 ishii Exp $
*
*
*/
@@ -1287,7 +1287,7 @@ utf_to_local(unsigned char *utf, unsigned char *iso,
sizeof(pg_utf_to_local), compare1);
if (p == NULL)
{
- elog(NOTICE, "utf_to_latin: could not convert UTF-8 (0x%04x) Ignored", iutf);
+ elog(NOTICE, "utf_to_local: could not convert UTF-8 (0x%04x). Ignored", iutf);
continue;
}
if (p->code & 0xff000000)