Fix compiler warnings, patch by Steven Scholz
authorGlenn L McGrath <bug1@ihug.co.nz>
Sun, 9 Feb 2003 22:40:34 +0000 (22:40 -0000)
committerGlenn L McGrath <bug1@ihug.co.nz>
Sun, 9 Feb 2003 22:40:34 +0000 (22:40 -0000)
libbb/interface.c
libbb/login.c
procps/kill.c

index bdb77bc4a21212db6f9dcdfa3ac15eafea13adee..fb794169d06d6ad0824788a2e0025bf0a57e0e1e 100644 (file)
@@ -15,7 +15,7 @@
  *              that either displays or sets the characteristics of
  *              one or more of the system's networking interfaces.
  *
- * Version:     $Id: interface.c,v 1.13 2003/01/14 08:54:06 andersen Exp $
+ * Version:     $Id: interface.c,v 1.14 2003/02/09 22:40:33 bug1 Exp $
  *
  * Author:      Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
  *              and others.  Copyright 1993 MicroWalt Corporation
@@ -960,7 +960,7 @@ static int if_readconf(void)
           (as of 2.1.128) */
        skfd2 = get_socket_for_af(AF_INET);
        if (skfd2 < 0) {
-               perror_msg(("warning: no inet socket available: %s\n"));
+               perror_msg(("warning: no inet socket available"));
                /* Try to soldier on with whatever socket we can get hold of.  */
                skfd2 = sockets_open(0);
                if (skfd2 < 0)
@@ -1106,7 +1106,7 @@ static int if_readlist_proc(char *target)
 
        fh = fopen(_PATH_PROCNET_DEV, "r");
        if (!fh) {
-               perror_msg(_("Warning: cannot open %s (%s). Limited output.\n"), _PATH_PROCNET_DEV);
+               perror_msg(_("Warning: cannot open %s. Limited output."), _PATH_PROCNET_DEV);
                return if_readconf();
        }
        fgets(buf, sizeof buf, fh);     /* eat line */
index 9b33f6c40f544a33c772633a1ba3e5f3109a69e3..092f1594ad87744ef9c2d96d58152b9f84cc2075 100644 (file)
@@ -17,7 +17,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  *
- * $Id: login.c,v 1.1 2003/01/21 20:59:34 bug1 Exp $
+ * $Id: login.c,v 1.2 2003/02/09 22:40:33 bug1 Exp $
  */
 
 #include <stdio.h>
@@ -37,7 +37,6 @@ void print_login_issue(const char *issue_file, const char *tty)
        FILE *fd;
        int c;
        char buf[256];
-       char *ret;
        time_t t;
        struct utsname uts;
 
index 9b31f28d6497af0051dc187cfd78e16bb82b0218..c7a3c7f72856a0a5fe2915469f0fb73746b03b19 100644 (file)
@@ -140,7 +140,7 @@ do_it_now:
                                                if (kill(*pl, sig) != 0) {
                                                        errors++;
                                                        if (quiet==0)
-                                                               perror_msg( "Could not kill pid '%d'", *pl);
+                                                               perror_msg( "Could not kill pid '%ld'", *pl);
                                                }
                                        }
                        }