]> granicus.if.org Git - postgresql/commitdiff
Message fixes
authorPeter Eisentraut <peter_e@gmx.net>
Sun, 21 Jun 2009 20:15:32 +0000 (20:15 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Sun, 21 Jun 2009 20:15:32 +0000 (20:15 +0000)
src/backend/libpq/hba.c
src/backend/utils/adt/arrayfuncs.c

index 0b9e0378a30cdacf12f162af42958fa065059b60..53d3d3b07e644c742d7e4cd6309b81d40cbab968 100644 (file)
@@ -10,7 +10,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/libpq/hba.c,v 1.186 2009/06/11 14:48:58 momjian Exp $
+ *       $PostgreSQL: pgsql/src/backend/libpq/hba.c,v 1.187 2009/06/21 20:15:32 petere Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -705,7 +705,7 @@ parse_hba_line(List *line, int line_num, HbaLine *parsedline)
                {
                        ereport(LOG,
                                        (errcode(ERRCODE_CONFIG_FILE_ERROR),
-                                        errmsg("end-of-line before ip address specification"),
+                                        errmsg("end-of-line before IP address specification"),
                                         errcontext("line %d of configuration file \"%s\"",
                                                                line_num, HbaFileName)));
                        return false;
index 54c489a896911668b777ab05a571e966ec1eb3bd..4ddde3c462d96b0f9b1b321e1e5acec3963ce2fc 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.158 2009/06/20 18:45:28 tgl Exp $
+ *       $PostgreSQL: pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.159 2009/06/21 20:15:32 petere Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -4396,7 +4396,7 @@ array_fill_with_lower_bounds(PG_FUNCTION_ARGS)
        if (PG_ARGISNULL(1) || PG_ARGISNULL(2))
                ereport(ERROR,
                                (errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
-                          errmsg("dimension array or low bound array cannot be NULL")));
+                          errmsg("dimension array or low bound array must not be null")));
 
        dims = PG_GETARG_ARRAYTYPE_P(1);
        lbs = PG_GETARG_ARRAYTYPE_P(2);
@@ -4436,7 +4436,7 @@ array_fill(PG_FUNCTION_ARGS)
        if (PG_ARGISNULL(1))
                ereport(ERROR,
                                (errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
-                          errmsg("dimension array or low bound array cannot be NULL")));
+                          errmsg("dimension array or low bound array must not be null")));
 
        dims = PG_GETARG_ARRAYTYPE_P(1);