mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-25 13:00:22 -04:00
21 lines
473 B
Plaintext
21 lines
473 B
Plaintext
$NetBSD: patch-ak,v 1.1 2008/08/17 20:09:12 dholland Exp $
|
|
|
|
--- src/Hsml/Headers.c~ 2004-09-16 18:05:58.000000000 -0400
|
|
+++ src/Hsml/Headers.c 2008-08-17 15:59:15.000000000 -0400
|
|
@@ -1,4 +1,6 @@
|
|
#include <stdio.h>
|
|
+#include <stdlib.h>
|
|
+#include <string.h>
|
|
|
|
// HEADERS
|
|
char headers[1024]="";
|
|
@@ -11,7 +13,7 @@ void addHeader(char *str)
|
|
void printHeaders()
|
|
{
|
|
char *http;
|
|
- http=(char *)getenv("HTTP");
|
|
+ http=getenv("HTTP");
|
|
if (http&&http[0]=='1')
|
|
if (http)
|
|
{
|