Fix wget error message and add (and use) chomp library function.
diff --git a/utility.c b/utility.c
index 3119269..0a0e652 100644
--- a/utility.c
+++ b/utility.c
@@ -1760,6 +1760,19 @@
 }
 #endif
 
+#if defined(BB_GREP) || defined(BB_HOSTNAME) || defined(BB_SED) || defined(BB_TAR) || defined(BB_WGET) || defined(BB_XARGS)
+void chomp(char *s)
+{
+	size_t len = strlen(s);
+
+	if (len == 0)
+		return;
+
+	if (s[len-1] == '\n')
+		s[len-1] = '\0';
+}
+#endif
+
 /* END CODE */
 /*
 Local Variables: