]> granicus.if.org Git - postgresql/commitdiff
Fixed error where = should be ==.
authorBruce Momjian <bruce@momjian.us>
Sat, 28 Dec 1996 22:44:58 +0000 (22:44 +0000)
committerBruce Momjian <bruce@momjian.us>
Sat, 28 Dec 1996 22:44:58 +0000 (22:44 +0000)
src/bin/pg_dump/pg_dump.c

index e6301bf73c7e7f8d1702df1570fd444424f8ef66..22cd49f6a220ac4037aa255e1a3b453d003e8191 100644 (file)
@@ -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)