Removed the -[no]watch flags of send and post.
[mmh] / uip / spost.c
index 30e283f..ff1e80a 100644 (file)
@@ -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;