We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b10c7a commit fb7f8e7Copy full SHA for fb7f8e7
src/backend/libpq/be-fsstubs.c
@@ -7,7 +7,7 @@
7
*
8
9
* IDENTIFICATION
10
- * $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 $
11
12
* NOTES
13
* This should be moved to a more appropriate place. It is here
@@ -241,7 +241,8 @@ lo_import(text *filename)
241
*/
242
fd = open(VARDATA(filename), O_RDONLY, 0666);
243
if (fd < 0) { /* error */
244
- elog(WARN, "lo_import: can't open unix file\"%s\"\n", filename);
+ elog(WARN, "lo_import: can't open unix file\"%s\"\n",
245
+ VARDATA(filename));
246
}
247
248
/*
0 commit comments