diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-04-25 03:44:19 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-04-25 03:44:19 +0000 |
commit | 96f6a69101a3b29e0086b8b19b17a462bd889914 (patch) | |
tree | 4073a1401f40da6aeb99333cf86827ebf28065b7 /options.c | |
parent | 26f66a929674173cdbf6e132a683cf6e31f9bfd5 (diff) | |
download | fetchmail-96f6a69101a3b29e0086b8b19b17a462bd889914.tar.gz fetchmail-96f6a69101a3b29e0086b8b19b17a462bd889914.tar.bz2 fetchmail-96f6a69101a3b29e0086b8b19b17a462bd889914.zip |
Fix -I.
svn path=/trunk/; revision=977
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -277,7 +277,7 @@ struct query *ctl; /* option record to be initialized */ #ifdef linux case 'I': case LA_INTERFACE: - ctl->server.interface = xstrdup(optarg); + interface_parse(optarg, &ctl->server); break; case 'M': case LA_MONITOR: |