aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/mb
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/utils/mb')
-rw-r--r--src/backend/utils/mb/conv.c4
-rw-r--r--src/backend/utils/mb/encnames.c6
-rw-r--r--src/backend/utils/mb/mbutils.c10
3 files changed, 10 insertions, 10 deletions
diff --git a/src/backend/utils/mb/conv.c b/src/backend/utils/mb/conv.c
index a41f9abe9dd..0337692d88c 100644
--- a/src/backend/utils/mb/conv.c
+++ b/src/backend/utils/mb/conv.c
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/mb/conv.c,v 1.43 2002/09/04 20:31:31 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/mb/conv.c,v 1.44 2003/03/10 22:28:18 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -335,7 +335,7 @@ compare2(const void *p1, const void *p2)
* UTF-8 ---> local code
*
* utf: input UTF-8 string. Its length is limited by "len" parameter
- * or a null terminater.
+ * or a null terminator.
* iso: pointer to the output.
* map: the conversion map.
* size: the size of the conversion map.
diff --git a/src/backend/utils/mb/encnames.c b/src/backend/utils/mb/encnames.c
index dc6623b09c1..7c62d8c4abb 100644
--- a/src/backend/utils/mb/encnames.c
+++ b/src/backend/utils/mb/encnames.c
@@ -2,7 +2,7 @@
* Encoding names and routines for work with it. All
* in this file is shared bedween FE and BE.
*
- * $Id: encnames.c,v 1.11 2002/12/05 23:21:07 momjian Exp $
+ * $Id: encnames.c,v 1.12 2003/03/10 22:28:18 tgl Exp $
*/
#ifdef FRONTEND
#include "postgres_fe.h"
@@ -25,7 +25,7 @@
/* ----------
* All encoding names, sorted: *** A L P H A B E T I C ***
*
- * All names must be without irrelevan chars, search routines use
+ * All names must be without irrelevant chars, search routines use
* isalnum() chars only. It means ISO-8859-1, iso_8859-1 and Iso8859_1
* are always converted to 'iso88591'. All must be lower case.
*
@@ -52,7 +52,7 @@ pg_encname pg_encname_tbl[] =
{
"eucjp", PG_EUC_JP
}, /* EUC-JP; Extended UNIX Code fixed Width
- * for Japanese, stdandard OSF */
+ * for Japanese, standard OSF */
{
"euckr", PG_EUC_KR
}, /* EUC-KR; Extended Unix Code for Korean ,
diff --git a/src/backend/utils/mb/mbutils.c b/src/backend/utils/mb/mbutils.c
index 560dffa8581..588aefc61c4 100644
--- a/src/backend/utils/mb/mbutils.c
+++ b/src/backend/utils/mb/mbutils.c
@@ -4,7 +4,7 @@
* (currently mule internal code (mic) is used)
* Tatsuo Ishii
*
- * $Header: /cvsroot/pgsql/src/backend/utils/mb/mbutils.c,v 1.38 2003/02/19 14:31:26 ishii Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/mb/mbutils.c,v 1.39 2003/03/10 22:28:18 tgl Exp $
*/
#include "postgres.h"
@@ -41,7 +41,7 @@ static int cliplen(const unsigned char *str, int len, int limit);
static bool need_to_init_client_encoding = -1;
/*
- * Set the client encoding and save fmgrinfo for the converion
+ * Set the client encoding and save fmgrinfo for the conversion
* function if necessary. if encoding conversion between client/server
* encoding is not supported, returns -1
*/
@@ -60,7 +60,7 @@ SetClientEncoding(int encoding, bool doit)
if (!PG_VALID_FE_ENCODING(encoding))
return (-1);
- /* If we cannot actualy set client encoding info, remeber it
+ /* If we cannot actually set client encoding info, remember it
* so that we could set it using InitializeClientEncoding()
* in InitPostgres()
*/
@@ -164,7 +164,7 @@ pg_get_client_encoding_name(void)
* warn and returns src. We cannot raise an error, since it will cause
* an infinit loop in error message sending.
*
- * In the case of no coversion, src is returned.
+ * In the case of no conversion, src is returned.
*
* XXX We assume that storage for converted result is 4-to-1 growth in
* the worst case. The rate for currently supported encoding pares are within 3
@@ -281,7 +281,7 @@ pg_convert2(PG_FUNCTION_ARGS)
elog(ERROR, "Encoding conversion failed");
/*
- * build text data type structre. we cannot use textin() here, since
+ * build text data type structure. we cannot use textin() here, since
* textin assumes that input string encoding is same as database
* encoding.
*/