projects
/
users
/
c2main
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ca6670
)
Fix typo in an error messages
author
Tatsuo Ishii
<ishii@postgresql.org>
Sat, 11 Jan 2003 06:59:30 +0000
(06:59 +0000)
committer
Tatsuo Ishii
<ishii@postgresql.org>
Sat, 11 Jan 2003 06:59:30 +0000
(06:59 +0000)
src/backend/utils/mb/wchar.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/utils/mb/wchar.c
b/src/backend/utils/mb/wchar.c
index eeee9a683647a3a3015e7763f62f70e0f85bd06f..c72980e8e9af73c3a4da5aca8fe6d6f2c2c570fe 100644
(file)
--- a/
src/backend/utils/mb/wchar.c
+++ b/
src/backend/utils/mb/wchar.c
@@
-1,7
+1,7
@@
/*
* conversion functions between pg_wchar and multibyte streams.
* Tatsuo Ishii
- * $Id: wchar.c,v 1.30
2002/09/04 20:31:31 momjian
Exp $
+ * $Id: wchar.c,v 1.30
.2.1 2003/01/11 06:59:30 ishii
Exp $
*
* WIN1250 client encoding updated by Pavel Behal
*
@@
-633,7
+633,7
@@
pg_verifymbstr(const unsigned char *mbstr, int len)
if (GetDatabaseEncoding() == PG_UTF8 &&
(*mbstr & 0xf8) == 0xf0)
{
- snprintf(buf, sizeof(buf), "Unicode >= 0x10000 is not sup
o
orted");
+ snprintf(buf, sizeof(buf), "Unicode >= 0x10000 is not sup
p
orted");
return (buf);
}