diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-01-14 22:28:16 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-01-14 22:28:16 +0000 |
commit | 70dcc659b0d246e0fd2879d06400c287b8638f42 (patch) | |
tree | 8284d6e99ce5457ed5de92461b35d6609a1d1e1b /options.c | |
parent | 7b9142f1429d1dd50efa2251239de70a66e82c3c (diff) | |
download | fetchmail-70dcc659b0d246e0fd2879d06400c287b8638f42.tar.gz fetchmail-70dcc659b0d246e0fd2879d06400c287b8638f42.tar.bz2 fetchmail-70dcc659b0d246e0fd2879d06400c287b8638f42.zip |
Change `interface' and `monitor' options to per-server.
svn path=/trunk/; revision=762
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -268,11 +268,11 @@ struct query *ctl; /* option record to be initialized */ #ifdef linux case 'I': case LA_INTERFACE: - cmd_interface = optarg; + ctl->server.interface = xstrdup(optarg); break; case 'M': case LA_MONITOR: - cmd_monitor = optarg; + ctl->server.monitor = xstrdup(optarg); break; #endif |