From: Tatsuo Ishii Date: Mon, 28 May 2001 01:01:09 +0000 (+0000) Subject: Fix a message error in utf_to_local X-Git-Url: http://git.postgresql.org/gitweb/stat%3Cscript%20data-cfasync=?a=commitdiff_plain;h=112a04d6172b8dfa15da4ca43ec5e537cbfb0200;p=users%2Fbernd%2Fpostgres.git Fix a message error in utf_to_local --- diff --git a/src/backend/utils/mb/conv.c b/src/backend/utils/mb/conv.c index 7358fb5058..4e6c5092a3 100644 --- a/src/backend/utils/mb/conv.c +++ b/src/backend/utils/mb/conv.c @@ -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)