Skip to content

Commit fb7f8e7

Browse files
committed
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)
1 parent 1b10c7a commit fb7f8e7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/backend/libpq/be-fsstubs.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.1.1.1 1996/07/09 06:21:30 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.2 1996/09/23 08:29:52 scrappy Exp $
1111
*
1212
* NOTES
1313
* This should be moved to a more appropriate place. It is here
@@ -241,7 +241,8 @@ lo_import(text *filename)
241241
*/
242242
fd = open(VARDATA(filename), O_RDONLY, 0666);
243243
if (fd < 0) { /* error */
244-
elog(WARN, "lo_import: can't open unix file\"%s\"\n", filename);
244+
elog(WARN, "lo_import: can't open unix file\"%s\"\n",
245+
VARDATA(filename));
245246
}
246247

247248
/*

0 commit comments

Comments
 (0)