diff options
Diffstat (limited to 'methods')
-rw-r--r-- | methods/rred.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/methods/rred.cc b/methods/rred.cc index 89d706984..5a1053019 100644 --- a/methods/rred.cc +++ b/methods/rred.cc @@ -693,8 +693,6 @@ int main(int argc, char **argv) bool test = false; Patch patch; - pkgInitConfig(*_config); - if (argc <= 1) { RredMethod Mth; return Mth.Run(); @@ -702,6 +700,8 @@ int main(int argc, char **argv) // Usage: rred -t input output diff ... if (argc > 1 && strcmp(argv[1], "-t") == 0) { + // Read config files so we see compressors. + pkgInitConfig(*_config); just_diff = false; test = true; i = 4; |