[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Nmh-commits] nmh/uip post.c
From: |
Joel Reicher |
Subject: |
[Nmh-commits] nmh/uip post.c |
Date: |
Tue, 17 Apr 2007 04:53:54 +0000 |
CVSROOT: /sources/nmh
Module name: nmh
Changes by: Joel Reicher <jjr> 07/04/17 04:53:54
Modified files:
uip : post.c
Log message:
buffer is compared with cp, and so needs to be changed to unsigned too.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/nmh/uip/post.c?cvsroot=nmh&r1=1.20&r2=1.21
Patches:
Index: post.c
===================================================================
RCS file: /sources/nmh/nmh/uip/post.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- post.c 13 Apr 2007 11:53:08 -0000 1.20
+++ post.c 17 Apr 2007 04:53:54 -0000 1.21
@@ -2,7 +2,7 @@
/*
* post.c -- enter messages into the mail transport system
*
- * $Id: post.c,v 1.20 2007/04/13 11:53:08 jjr Exp $
+ * $Id: post.c,v 1.21 2007/04/17 04:53:54 jjr Exp $
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
@@ -1288,7 +1288,7 @@
find_prefix (void)
{
int len, result;
- char buffer[BUFSIZ];
+ unsigned char buffer[BUFSIZ];
FILE *in;
if ((in = fopen (tmpfil, "r")) == NULL)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Nmh-commits] nmh/uip post.c,
Joel Reicher <=