From 76b51b746c95647aceff29ab178eff496843f528 Mon Sep 17 00:00:00 2001 From: Joel Reicher Date: Tue, 17 Apr 2007 04:53:54 +0000 Subject: [PATCH] buffer is compared with cp, and so needs to be changed to unsigned too. --- uip/post.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uip/post.c b/uip/post.c index 1f706fe..d99da1f 100644 --- a/uip/post.c +++ b/uip/post.c @@ -1288,7 +1288,7 @@ static int find_prefix (void) { int len, result; - char buffer[BUFSIZ]; + unsigned char buffer[BUFSIZ]; FILE *in; if ((in = fopen (tmpfil, "r")) == NULL) -- 1.7.10.4