6
6
*
7
7
*
8
8
* IDENTIFICATION
9
- * $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.20 1997/01/10 09:57:14 vadim Exp $
9
+ * $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.21 1997/01/10 17:46:33 momjian Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
@@ -126,7 +126,7 @@ DoCopy(char *relname, bool binary, bool oids, bool from, bool pipe,
126
126
fp = fopen (filename , "r" );
127
127
if (fp == NULL )
128
128
elog (WARN , "COPY command, running in backend with "
129
- "effective uid %d, could not open file '%s' for " ,
129
+ "effective uid %d, could not open file '%s' for "
130
130
"reading. Errno = %s (%d)." ,
131
131
geteuid (), filename , strerror (errno ), errno );
132
132
/* Above should not return */
@@ -145,7 +145,7 @@ DoCopy(char *relname, bool binary, bool oids, bool from, bool pipe,
145
145
umask (oumask );
146
146
if (fp == NULL )
147
147
elog (WARN , "COPY command, running in backend with "
148
- "effective uid %d, could not open file '%s' for " ,
148
+ "effective uid %d, could not open file '%s' for "
149
149
"writing. Errno = %s (%d)." ,
150
150
geteuid (), filename , strerror (errno ), errno );
151
151
/* Above should not return */
0 commit comments