X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fspost.c;h=ff1e80ac920b5cc9ab7e2ecab78f734633517798;hb=9677896bbb11f7b49ca3e1665601407b6c7a459f;hp=30e283f44cf180cd4ec62720f76c4ab0b850d5e4;hpb=6e8e22e2ff93a8778f53b56246c42bf7f4dd8026;p=mmh diff --git a/uip/spost.c b/uip/spost.c index 30e283f..ff1e80a 100644 --- a/uip/spost.c +++ b/uip/spost.c @@ -24,23 +24,19 @@ static struct swit switches[] = { { "verbose", 0 }, #define NVERBSW 1 { "noverbose", 2 }, -#define WATCSW 2 - { "watch", 0 }, -#define NWATCSW 3 - { "nowatch", 2 }, -#define ALIASW 4 +#define ALIASW 2 { "alias aliasfile", 0 }, -#define NALIASW 5 +#define NALIASW 3 { "noalias", 2 }, -#define VERSIONSW 6 +#define VERSIONSW 4 { "Version", 0 }, -#define HELPSW 7 +#define HELPSW 5 { "help", 0 }, -#define DEBUGSW 8 +#define DEBUGSW 6 { "debug", -5 }, -#define DISTSW 9 +#define DISTSW 7 { "dist", -4 }, /* interface from dist */ -#define LIBSW 10 +#define LIBSW 8 { "library directory", -7 }, { NULL, 0 } }; @@ -105,10 +101,9 @@ static struct headers RHeaders[] = { }; -static int badmsg = 0; /* message has bad semantics */ -static int verbose = 0; /* spell it out */ -static int debug = 0; /* debugging post */ -static int watch = 0; /* watch the delivery process */ +static int badmsg = 0; +static int verbose = 0; +static int debug = 0; static int aliasflg = 0; /* if going to process aliases */ static unsigned msgflags = 0; /* what we've seen */ @@ -191,13 +186,6 @@ main(int argc, char **argv) verbose = 0; continue; - case WATCSW: - watch++; - continue; - case NWATCSW: - watch = 0; - continue; - case ALIASW: if (!(cp = *argp++) || *cp == '-') adios(NULL, "missing argument to %s", @@ -321,7 +309,7 @@ main(int argc, char **argv) *argp++ = "-m"; /* send to me too */ *argp++ = "-t"; /* read msg for recipients */ *argp++ = "-i"; /* don't stop on "." */ - if (watch || verbose) { + if (verbose) { *argp++ = "-v"; } *argp = NULL;