diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-03-20 20:38:20 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-03-20 20:39:59 +0200 |
commit | 19f45565f581ce605956c29586bfd277f6012eec (patch) | |
tree | 9d5828de33d69fff44dc31939d41d7bd2869f86b /src/bin/pg_dump/pg_restore.c | |
parent | 9dbf2b7d75de5af38d087cbe2b1147dd0fd10f0a (diff) |
pg_dump: Remove undocumented "files" output format
This was for demonstration only, and now it was creating compiler
warnings from zlib without an obvious fix (see also
d923125b77c5d698bb8107a533a21627582baa43), let's just remove it. The
"directory" format is presumably similar enough anyway.
Diffstat (limited to 'src/bin/pg_dump/pg_restore.c')
-rw-r--r-- | src/bin/pg_dump/pg_restore.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/bin/pg_dump/pg_restore.c b/src/bin/pg_dump/pg_restore.c index b5f4c627c40..1e2b6fd046b 100644 --- a/src/bin/pg_dump/pg_restore.c +++ b/src/bin/pg_dump/pg_restore.c @@ -365,11 +365,6 @@ main(int argc, char **argv) opts->format = archDirectory; break; - case 'f': - case 'F': - opts->format = archFiles; - break; - case 't': case 'T': opts->format = archTar; |