aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--conf.c2
-rwxr-xr-xfetchmailconf2
2 files changed, 2 insertions, 2 deletions
diff --git a/conf.c b/conf.c
index 649cea0f..fcf76463 100644
--- a/conf.c
+++ b/conf.c
@@ -130,7 +130,7 @@ void dump_config(struct runctl *runp, struct query *querylist)
fputs("from Tkinter import TRUE, FALSE\n\n", stdout);
fputs("# Start of initializer\n", stdout);
- fputs("configuration = ", stdout);
+ fputs("fetchmailrc = ", stdout);
indent('{');
numdump("poll_interval", runp->poll_interval);
diff --git a/fetchmailconf b/fetchmailconf
index 536b3520..952d4d65 100755
--- a/fetchmailconf
+++ b/fetchmailconf
@@ -1101,7 +1101,7 @@ if __name__ == '__main__':
# The tricky part -- initializing objects from the configuration global
# `Configuration' is the top level of the object tree we're going to mung
Fetchmailrc = Configuration()
- copy_instance(Fetchmailrc, configuration)
+ copy_instance(Fetchmailrc, fetchmailrc)
Fetchmailrc.servers = [];
for server in configuration['servers']:
Newsite = Server()