diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-08-03 02:38:47 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-08-03 02:38:47 +0000 |
commit | 6ed1715b1f5d273f6f2a0facc4ad7f5485c433e0 (patch) | |
tree | e2b441d4eace5d345a9b58d5ae1fbf2781bdc1e0 /src/bin/psql/psql.c | |
parent | ea210dc61189bb730b07519cfbffc5ec845df1f3 (diff) |
Cleanup for NAMEDATALEN use.
Diffstat (limited to 'src/bin/psql/psql.c')
-rw-r--r-- | src/bin/psql/psql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index b612d1a8eb9..98742dc93a3 100644 --- a/src/bin/psql/psql.c +++ b/src/bin/psql/psql.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.80 1997/08/01 04:07:55 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.81 1997/08/03 02:37:58 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -835,7 +835,7 @@ do_copy(const char *args, PsqlSettings * settings) /* The direction of the copy is from a file to a table. */ char file[MAXPATHLEN + 1]; /* The pathname of the file from/to which we copy */ - char table[NAMEDATALEN + 1]; + char table[NAMEDATALEN]; /* The name of the table from/to which we copy */ bool syntax_error; /* The \c command has invalid syntax */ |