diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | options.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -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. @@ -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: |