projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fd12c8f
)
Fixed error where = should be ==.
author
Bruce Momjian
Sat, 28 Dec 1996 22:44:58 +0000
(22:44 +0000)
committer
Bruce Momjian
Sat, 28 Dec 1996 22:44:58 +0000
(22:44 +0000)
src/bin/pg_dump/pg_dump.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_dump/pg_dump.c
b/src/bin/pg_dump/pg_dump.c
index e6301bf73c7e7f8d1702df1570fd444424f8ef66..22cd49f6a220ac4037aa255e1a3b453d003e8191 100644
(file)
--- 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 -
[email protected]
- 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)