Removed unused local variables to eliminate warnings from gcc 4.6.2.
authorDavid Levine <levinedl@acm.org>
Sun, 11 Dec 2011 16:24:20 +0000 (10:24 -0600)
committerDavid Levine <levinedl@acm.org>
Sun, 11 Dec 2011 16:24:20 +0000 (10:24 -0600)
uip/fmtdump.c
uip/msgchk.c
uip/post.c

index fff4502..2abf05e 100644 (file)
@@ -45,7 +45,6 @@ static void litputc(char);
 int
 main (int argc, char **argv)
 {
-    int ncomps;
     char *cp, *form = NULL, *format = NULL;
     char buf[BUFSIZ], *nfs, **argp, **arguments;
     struct format *fmt;
@@ -101,7 +100,7 @@ main (int argc, char **argv)
      * Get new format string.  Must be before chdir().
      */
     nfs = new_fs (form, format, FORMAT);
-    ncomps = fmt_compile(nfs, &fmt);
+    (void) fmt_compile(nfs, &fmt);
 
     fmt_dump(fmt);
     done(0);
index 9b56649..c7f32f5 100644 (file)
@@ -96,7 +96,6 @@ main (int argc, char **argv)
     int datesw = 1, notifysw = NT_ALL;
     int status = 0, sasl = 0;
     int snoop = 0, vecp = 0;
-    uid_t uid;
     char *cp, *host = NULL, *port = NULL, *user, *proxy = NULL; 
     char buf[BUFSIZ], *saslmech = NULL; 
     char **argp, **arguments, *vec[MAXVEC];
@@ -116,7 +115,6 @@ main (int argc, char **argv)
     context_read();
 
     mts_init (invo_name);
-    uid = getuid ();
     user = getusername();
 
     arguments = getarguments (invo_name, argc, argv, 1);
index d5760a2..cd96ed7 100644 (file)
@@ -1309,16 +1309,13 @@ make_bcc_file (int dashstuff)
 static int
 find_prefix (void)
 {
-    int        len, result;
+    int        result = OK;
     unsigned char buffer[BUFSIZ];
     FILE *in;
 
     if ((in = fopen (tmpfil, "r")) == NULL)
        adios (tmpfil, "unable to re-open");
 
-    len = strlen (prefix);
-
-    result = OK;
     while (fgets (buffer, sizeof(buffer) - 1, in))
        if (buffer[0] == '-' && buffer[1] == '-') {
            unsigned char *cp;