mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-10 13:03:41 -04:00
14 lines
340 B
Plaintext
14 lines
340 B
Plaintext
$NetBSD: patch-av,v 1.1 2004/12/30 11:05:04 agc Exp $
|
|
|
|
--- src/send.c 2004/12/30 10:59:35 1.1
|
|
+++ src/send.c 2004/12/30 10:59:57
|
|
@@ -155,7 +155,7 @@
|
|
for ( i = 0 ; strlen(s) > size ; ++i)
|
|
{
|
|
length = size;
|
|
- while (!isspace(s[length-1])&&length>1)
|
|
+ while (!isspace((unsigned char)s[length-1])&&length>1)
|
|
length--;
|
|
|
|
ch='\0';
|