diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-03-07 19:41:28 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-03-07 19:41:28 +0000 |
commit | b23e5cf4c6234bdcdc97152f06dabe98e1db2118 (patch) | |
tree | 0de3a0d2e0a0a84fbd60d380d2bb82f3e96245a6 /options.c | |
parent | de67861145546849b56d6eb784a7381c2ff9475a (diff) | |
download | fetchmail-b23e5cf4c6234bdcdc97152f06dabe98e1db2118.tar.gz fetchmail-b23e5cf4c6234bdcdc97152f06dabe98e1db2118.tar.bz2 fetchmail-b23e5cf4c6234bdcdc97152f06dabe98e1db2118.zip |
Eliminate duplicate options.
svn path=/trunk/; revision=922
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -63,10 +63,6 @@ static struct option longoptions[] = { {"syslog", no_argument, (int *) 0, LA_SYSLOG }, {"fetchmailrc",required_argument,(int *) 0, LA_RCFILE }, {"idfile", required_argument, (int *) 0, LA_IDFILE }, -#ifdef linux - {"interface", required_argument, (int *) 0, LA_INTERFACE }, - {"monitor", required_argument, (int *) 0, LA_MONITOR }, -#endif {"protocol", required_argument, (int *) 0, LA_PROTOCOL }, {"proto", required_argument, (int *) 0, LA_PROTOCOL }, @@ -91,8 +87,10 @@ static struct option longoptions[] = { {"fetchlimit",required_argument, (int *) 0, LA_FETCHLIMIT }, {"mda", required_argument, (int *) 0, LA_MDA }, - {"interface", required_argument, (int *) 0, LA_INTERFACE }, - {"monitor", required_argument, (int *) 0, LA_MONITOR }, +#ifdef linux + {"interface", required_argument, (int *) 0, LA_INTERFACE }, + {"monitor", required_argument, (int *) 0, LA_MONITOR }, +#endif {"yydebug", no_argument, (int *) 0, LA_YYDEBUG }, |