66 *
77 *
88 * IDENTIFICATION
9- * $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.20 1997/01/1009:57:14 vadim Exp $
9+ * $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.21 1997/01/1017:46:33 momjian Exp $
1010 *
1111 *-------------------------------------------------------------------------
1212 */
@@ -126,7 +126,7 @@ DoCopy(char *relname, bool binary, bool oids, bool from, bool pipe,
126126fp = fopen (filename ,"r" );
127127if (fp == NULL )
128128elog (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 "
130130"reading. Errno = %s (%d)." ,
131131geteuid (),filename ,strerror (errno ),errno );
132132/* Above should not return */
@@ -145,7 +145,7 @@ DoCopy(char *relname, bool binary, bool oids, bool from, bool pipe,
145145umask (oumask );
146146if (fp == NULL )
147147elog (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 "
149149"writing. Errno = %s (%d)." ,
150150geteuid (),filename ,strerror (errno ),errno );
151151/* Above should not return */