aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-04-25 03:44:19 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-04-25 03:44:19 +0000
commit96f6a69101a3b29e0086b8b19b17a462bd889914 (patch)
tree4073a1401f40da6aeb99333cf86827ebf28065b7
parent26f66a929674173cdbf6e132a683cf6e31f9bfd5 (diff)
downloadfetchmail-96f6a69101a3b29e0086b8b19b17a462bd889914.tar.gz
fetchmail-96f6a69101a3b29e0086b8b19b17a462bd889914.tar.bz2
fetchmail-96f6a69101a3b29e0086b8b19b17a462bd889914.zip
Fix -I.
svn path=/trunk/; revision=977
-rw-r--r--NEWS6
-rw-r--r--options.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index bbb20c45..3b80b7d8 100644
--- a/NEWS
+++ b/NEWS
@@ -28,6 +28,12 @@ having trouble figuring why it wouldn't just break *all* the time.)
------------------------------------------------------------------------------
+pl 3.9.3 ():
+* Fix for -I option from George Sipe.
+* Finally got error.c to compile under AIX, thanks to Dave Vinish.
+
+There are 224 people on the fetchmail-friends list.
+
pl 3.9.2 (Wed Apr 23 14:07:03 EDT 1997):
* Fixed a glitch in the Makefile yacc and lex productions
* Add logic for X-Fetchmail-Warning emission of \r\n to pacify qmail.
diff --git a/options.c b/options.c
index dc193564..f9a8c02a 100644
--- a/options.c
+++ b/options.c
@@ -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: