summaryrefslogtreecommitdiff
path: root/comms/fidogate/patches/patch-ar
blob: 9667675a419ebaf62811e9c72d8298313acd8dea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$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;