ca86cc57bb
* Make compile on newer gcc -Wuninitialized. * Use CONF_FILES install method.
13 lines
380 B
Text
13 lines
380 B
Text
$NetBSD: patch-ar,v 1.1 2002/07/06 20:15:52 tv Exp $
|
|
|
|
--- src/charset/charset.c.orig Sat Jul 6 15:31:24 2002
|
|
+++ src/charset/charset.c Sat Jul 6 15:31:41 2002
|
|
@@ -203,7 +203,7 @@
|
|
c &= 0xff;
|
|
|
|
if( qp && (c == '=' || c >= 0x80) )
|
|
- str_printf(buf, sizeof(buf), "=%02.2X", c & 0xff);
|
|
+ str_printf(buf, sizeof(buf), "=%2.2X", c & 0xff);
|
|
else
|
|
{
|
|
buf[0] = c;
|