Fixup warnings and undefined operations that show up in gcc-3.1
authorEric Andersen <andersen@codepoet.org>
Thu, 11 Jul 2002 11:11:56 +0000 (11:11 -0000)
committerEric Andersen <andersen@codepoet.org>
Thu, 11 Jul 2002 11:11:56 +0000 (11:11 -0000)
 -Erik

archival/libunarchive/deb_extract.c
archival/libunarchive/get_header_ar.c
archival/libunarchive/get_header_cpio.c
archival/libunarchive/get_header_tar.c
archival/libunarchive/seek_sub_file.c
coreutils/md5sum.c
coreutils/uuencode.c
editors/sed.c
networking/ifconfig.c
networking/telnet.c
shell/ash.c

index e5b5c968531617e2578bf4150cb5375de732413e..b95ac4d1feec474c5b7d950d137fd0f7932a121d 100644 (file)
@@ -80,4 +80,5 @@ char *deb_extract(const char *package_filename, FILE *out_stream,
                free(file_list);
        }
        return(output_buffer);
-}
\ No newline at end of file
+}
+
index d2840e0e3bbe5f24b8216c8aff9d284f6f864034..1618b767f54a44ac302a1955a6271c4ca3144913 100644 (file)
@@ -103,4 +103,5 @@ file_header_t *get_header_ar(FILE *src_stream)
        typed->gid = atoi(ar.formated.gid);
 
        return(typed);
-}
\ No newline at end of file
+}
+
index a2136e441255d5f177126b5c9113191514d39465..cd48601b683e1957e2fcd88b7cd377f0dfa9bb2f 100644 (file)
@@ -133,4 +133,5 @@ file_header_t *get_header_cpio(FILE *src_stream)
                }
        }
        return(cpio_entry);
-}
\ No newline at end of file
+}
+
index 639e2dc360d5c475279a186fd61920ee5a93bd91..be6bf2a064f120bf49a908c9421957b0e205157c 100644 (file)
@@ -96,4 +96,5 @@ file_header_t *get_header_tar(FILE *tar_stream)
                strtol(tar.formated.devminor, NULL, 8);
 
        return(tar_entry);
-}
\ No newline at end of file
+}
+
index 72a3754bc1097392e94e6a2f2ecbe9f943bc328f..7523a52ab780c94bacd7a9a28a1c1abfa90bb3bb 100644 (file)
@@ -32,4 +32,5 @@ void seek_sub_file(FILE *src_stream, const int count)
                }
        }
        return;
-}
\ No newline at end of file
+}
+
index 83c769ef2304afb82c8057de6e9a13c719a71e8b..f5be4486cddca551086f7da855f2fd0653677244 100644 (file)
@@ -434,7 +434,7 @@ static void md5_process_block(const void *buffer, size_t len, struct md5_ctx *ct
                temp += FI(B,C,D);
        }
        temp += cwp[(int)(*pp++)] + *pc++;
-       temp = CYCLIC (temp, ps[i&3]);
+       CYCLIC (temp, ps[i&3]);
        temp += B;
        A = D; D = C; C = B; B = temp;
     }
@@ -443,7 +443,7 @@ static void md5_process_block(const void *buffer, size_t len, struct md5_ctx *ct
 
     for ( i = 0 ; i < 16 ; i++ ) {
        temp = A + FF(B,C,D) + cwp[(int)(*pp++)] + *pc++;
-       temp = CYCLIC (temp, ps[i&3]);
+       CYCLIC (temp, ps[i&3]);
        temp += B;
        A = D; D = C; C = B; B = temp;
     }
@@ -451,21 +451,21 @@ static void md5_process_block(const void *buffer, size_t len, struct md5_ctx *ct
     ps += 4;
     for ( i = 0 ; i < 16 ; i++ ) {
        temp = A + FG(B,C,D) + cwp[(int)(*pp++)] + *pc++;
-       temp = CYCLIC (temp, ps[i&3]);
+       CYCLIC (temp, ps[i&3]);
        temp += B;
        A = D; D = C; C = B; B = temp;
     }
     ps += 4;
     for ( i = 0 ; i < 16 ; i++ ) {
        temp = A + FH(B,C,D) + cwp[(int)(*pp++)] + *pc++;
-       temp = CYCLIC (temp, ps[i&3]);
+       CYCLIC (temp, ps[i&3]);
        temp += B;
        A = D; D = C; C = B; B = temp;
     }
     ps += 4;
     for ( i = 0 ; i < 16 ; i++ ) {
        temp = A + FI(B,C,D) + cwp[(int)(*pp++)] + *pc++;
-       temp = CYCLIC (temp, ps[i&3]);
+       CYCLIC (temp, ps[i&3]);
        temp += B;
        A = D; D = C; C = B; B = temp;
     }
index 24b9f1c6ae2ae3433b8f9a0a69443bba6a8ac5ac..1d42494fdc1e0584711837cb4bef6c94ea5361d6 100644 (file)
@@ -21,6 +21,7 @@
  */
 #include <getopt.h>
 #include <stdio.h>
+#include <string.h>
 #include <stdlib.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -49,7 +50,7 @@ static char tbl_std[65] = {
        'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
        'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
        'X', 'Y', 'Z', '[', '\\', ']', '^', '_',
-       '\`' /* termination character */
+       '`' /* termination character */
 };
 
 /*
index 93faf00c26bdba44ef303353f3568210d9f9d1f8..84aea9b0aaacf636d78ffb77b0e86b3b89b8ec57 100644 (file)
@@ -401,8 +401,10 @@ static char *parse_cmd_str(struct sed_cmd * const sed_cmd, const char *const cmd
                idx = get_address(sed_cmd, cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
 
        /* second part (if present) will begin with a comma */
-       if (cmdstr[idx] == ',')
-               idx += get_address(sed_cmd, &cmdstr[++idx], &sed_cmd->end_line, &sed_cmd->end_match);
+       if (cmdstr[idx] == ',') {
+               idx++;
+               idx += get_address(sed_cmd, &cmdstr[idx], &sed_cmd->end_line, &sed_cmd->end_match);
+       }
 
        /* skip whitespace before the command */
        while (isspace(cmdstr[idx]))
index 9e87c8be5afff9b65bc0d3c30fe80d80e6e90533..3ada4f178d8ef3da905384a90fd542f6eec7df1d 100644 (file)
@@ -15,7 +15,7 @@
  * Foundation;  either  version 2 of the License, or  (at
  * your option) any later version.
  *
- * $Id: ifconfig.c,v 1.17 2002/07/03 11:46:34 andersen Exp $
+ * $Id: ifconfig.c,v 1.18 2002/07/11 11:11:52 andersen Exp $
  *
  */
 
@@ -504,6 +504,7 @@ int ifconfig_main(int argc, char **argv)
                        }
                }
        LOOP:
+               continue;
        } /* end of while-loop */
 
        return goterr;
index 86d672c2d5fd6ec81971fcc2baa39c57df4508f3..14b71c85da8045763370b39074a7d203b1b23920 100644 (file)
@@ -36,6 +36,7 @@
 #include <errno.h>
 #include <stdlib.h>
 #include <stdarg.h>
+#include <string.h>
 #include <signal.h>
 #include <arpa/telnet.h>
 #include <sys/types.h>
index 3d7043c8faca700776a0c669bb38033b477ae901..64761b9aa508e1243da0b57412dabcdd38c53358 100644 (file)
@@ -11129,7 +11129,7 @@ redirect(union node *redir, int flags)
 {
        union node *n;
        struct redirtab *sv = NULL;
-       int i;
+       int i = EMPTY;
        int fd;
        int newfd;
        int try;
@@ -12440,7 +12440,7 @@ findvar(struct var **vpp, const char *name)
 /*
  * Copyright (c) 1999 Herbert Xu <herbert@debian.org>
  * This file contains code for the times builtin.
- * $Id: ash.c,v 1.54 2002/07/04 00:19:46 andersen Exp $
+ * $Id: ash.c,v 1.55 2002/07/11 11:11:51 andersen Exp $
  */
 static int timescmd (int argc, char **argv)
 {