Suggestion from Larry: no format string, use fputs instead.
diff --git a/wget.c b/wget.c
index e561ae2..5fa918a 100644
--- a/wget.c
+++ b/wget.c
@@ -325,7 +325,7 @@
 			if (do_continue)
 				fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range);
 			if(extra_headers_left < sizeof(extra_headers))
-				fprintf(sfp,extra_headers);
+				fputs(extra_headers,sfp);
 			fprintf(sfp,"Connection: close\r\n\r\n");
 
 			/*
@@ -813,7 +813,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *	$Id: wget.c,v 1.39 2001/05/15 17:51:37 andersen Exp $
+ *	$Id: wget.c,v 1.40 2001/05/15 20:11:49 andersen Exp $
  */