From bbc0d47773257fdd6b440f96e4b55dd7d656772b Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 28 Dec 1996 22:44:58 +0000 Subject: [PATCH] Fixed error where = should be ==. --- src/bin/pg_dump/pg_dump.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index e6301bf73c..22cd49f6a2 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -20,7 +20,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.19 1996/12/27 23:12:54 bryanh Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.20 1996/12/28 22:44:58 momjian Exp $ * * Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb * @@ -287,7 +287,8 @@ dumpClasses(const TableInfo tblinfo[], const int numTables, FILE *fout, int i; char *all_only; - if (onlytable = NULL) all_only = "all"; + if (onlytable == NULL) + all_only = "all"; else all_only = "one"; if (g_verbose)