1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-23 14:01:44 +03:00

Open files in binary mode on Win32 so control-z isn't seen as EOF.

This commit is contained in:
Bruce Momjian
2004-07-11 00:54:55 +00:00
parent e5ca4bde79
commit 330c6c42be
4 changed files with 20 additions and 8 deletions

View File

@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/copy.c,v 1.47 2004/05/07 00:24:58 tgl Exp $
* $PostgreSQL: pgsql/src/bin/psql/copy.c,v 1.48 2004/07/11 00:54:55 momjian Exp $
*/
#include "postgres_fe.h"
#include "copy.h"
@ -516,7 +516,7 @@ do_copy(const char *args)
if (options->from)
{
if (options->file)
copystream = fopen(options->file, "r");
copystream = fopen(options->file, R_TEXTFILE);
else if (!options->psql_inout)
copystream = pset.cur_cmd_source;
else