1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-03 15:22:11 +03:00

Error message editing in backend/bootstrap, /lib, /nodes, /port.

This commit is contained in:
Tom Lane
2003-07-22 23:30:39 +00:00
parent 56f87688c4
commit c72839d5be
21 changed files with 121 additions and 113 deletions

View File

@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.16 2002/11/08 20:23:56 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.17 2003/07/22 23:30:39 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -55,10 +55,9 @@ pg_dlopen(char *filename)
/* list the undefined symbols, if any */
if (count)
{
elog(WARNING, "dl: Undefined:");
while (*list)
{
elog(WARNING, " %s", *list);
elog(WARNING, "\"%s\" is undefined", *list);
list++;
}
}