mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
diff -ru ../../../orig/postgres95/src/backend/libpq/be-fsstubs.c
./libpq/be-fsstubs.c - --- ../../../orig/postgres95/src/backend/libpq/be-fsstubs.c Tue Jul 9 08:21:30 1996 +++ ./libpq/be-fsstubs.c Tue Sep 17 15:30:09 1996 @@ -241,7 +241,7 @@ */ fd = open(VARDATA(filename), O_RDONLY, 0666); if (fd < 0) { /* error */ - - elog(WARN, "lo_import: can't open unix file\"%s\"\n", filename); + elog(WARN, "lo_import: can't open unix file \"%s\"\n", VARDATA(filename)); } /* Submited by: skimo@breughel.ufsia.ac.be (Sven Verdoolaege)
This commit is contained in:
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.1.1.1 1996/07/09 06:21:30 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.2 1996/09/23 08:29:52 scrappy Exp $
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* This should be moved to a more appropriate place. It is here
|
* This should be moved to a more appropriate place. It is here
|
||||||
@ -241,7 +241,8 @@ lo_import(text *filename)
|
|||||||
*/
|
*/
|
||||||
fd = open(VARDATA(filename), O_RDONLY, 0666);
|
fd = open(VARDATA(filename), O_RDONLY, 0666);
|
||||||
if (fd < 0) { /* error */
|
if (fd < 0) { /* error */
|
||||||
elog(WARN, "lo_import: can't open unix file\"%s\"\n", filename);
|
elog(WARN, "lo_import: can't open unix file\"%s\"\n",
|
||||||
|
VARDATA(filename));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user