Make suffix_mult structures const. Thanks to Vladimir N. Oleynik.
[oweals/busybox.git] / nc.c
diff --git a/nc.c b/nc.c
index eb6e17762fdc0f85ade75cd7013b6fe3e0dd0f30..682da82bf02037927dee97abde283abe9ea5a43a 100644 (file)
--- a/nc.c
+++ b/nc.c
 
 */
 
-#warning This applet has moved to netkit-tiny.  After BusyBox 0.49, this
-#warning applet will be removed from BusyBox.  All maintenance efforts
-#warning should be done in the netkit-tiny source tree.
-
 #include "busybox.h"
 #include <stdio.h>
 #include <stdlib.h>
@@ -63,7 +59,7 @@ int nc_main(int argc, char **argv)
                perror_msg_and_die("socket");
 
        if ((hostinfo = gethostbyname(*argv)) == NULL)
-               error_msg_and_die("cannot resolve %s\n", *argv);
+               error_msg_and_die("cannot resolve %s", *argv);
 
        address.sin_family = AF_INET;
        address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;