diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-10-13 16:00:11 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-10-13 16:00:11 +0000 |
commit | 777b6d5a983ceed7d3ef7673718292cbf31f69a1 (patch) | |
tree | 248fd868109648a379ff5d2813fd6737868f9c17 /rcfile_y.y | |
parent | 673425dce38fefbec673686b7284afd1db6753f8 (diff) | |
download | fetchmail-777b6d5a983ceed7d3ef7673718292cbf31f69a1.tar.gz fetchmail-777b6d5a983ceed7d3ef7673718292cbf31f69a1.tar.bz2 fetchmail-777b6d5a983ceed7d3ef7673718292cbf31f69a1.zip |
Fix ETRN mode.
svn path=/trunk/; revision=1507
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -415,9 +415,9 @@ static void record_current(void) FLAG_FORCE(remotename); FLAG_FORCE(password); if (cmd_opts.mailboxes) - save_str(¤t.mailboxes, -1, cmd_opts.mailboxes->id); + current.mailboxes = cmd_opts.mailboxes; if (cmd_opts.smtphunt) - save_str(¤t.smtphunt, -1, cmd_opts.smtphunt->id); + current.smtphunt = cmd_opts.smtphunt; FLAG_FORCE(mda); FLAG_FORCE(preconnect); FLAG_FORCE(postconnect); |