Renamed -version switch to -Version to remove the conflict with -verbose.
[mmh] / uip / mhmail.c
index 374c8fd..6506b7d 100644 (file)
@@ -23,7 +23,7 @@ static struct swit switches[] = {
 #define SUBJSW  3
        { "subject text", 0 },
 #define VERSIONSW  4
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  5
        { "help", 0 },
 #define RESNDSW  6
@@ -45,7 +45,8 @@ int
 main(int argc, char **argv)
 {
        pid_t child_id;
-       int status, i, iscc = 0, nvec;
+       int status, iscc = 0, nvec;
+       unsigned int i;
        int queued = 0, resent = 0, somebody;
        char *cp, *tolist = NULL, *cclist = NULL, *subject = NULL;
        char *from = NULL, *body = NULL, **argp, **arguments;
@@ -214,11 +215,6 @@ main(int argc, char **argv)
 static void
 intrser(int i)
 {
-#ifndef RELIABLE_SIGNALS
-       if (i)
-               SIGNAL(i, SIG_IGN);
-#endif
-
        unlink(tmpfil);
        done(i != 0 ? 1 : 0);
 }