aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2004-01-29 12:34:59 +0000
committerNeil Conway <neilc@samurai.com>2004-01-29 12:34:59 +0000
commit940b87e722c081c93d9f6f14db58524911b2a66d (patch)
tree3d9c2825f2cb8d94512856bc59c83f7c535d57f0 /src
parent18f9d7c74e28710723ef408b939f36246390d1e1 (diff)
downloadpostgresql-940b87e722c081c93d9f6f14db58524911b2a66d.tar.gz
postgresql-940b87e722c081c93d9f6f14db58524911b2a66d.zip
Fix (debatable) spelling mistake in a comment: 'concatenate' is the usual
term, not 'catenate'.
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/copy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c
index 9766bece96d..9fb35f532de 100644
--- a/src/bin/psql/copy.c
+++ b/src/bin/psql/copy.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/copy.c,v 1.41 2004/01/28 22:14:04 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/copy.c,v 1.42 2004/01/29 12:34:59 neilc Exp $
*/
#include "postgres_fe.h"
#include "copy.h"
@@ -85,7 +85,7 @@ free_copy_options(struct copy_options * ptr)
}
-/* catenate "more" onto "var", freeing the original value of *var */
+/* concatenate "more" onto "var", freeing the original value of *var */
static void
xstrcat(char **var, const char *more)
{