pkgsrc/comms/fidogate/patches/patch-ar
abs c7ad5c4afa You are in a maze of twisty little Makefiles, all with short install targets
Somewhat more than 11 rooms later... PKG_DESTDIR_SUPPORT
2009-12-18 01:09:23 +00:00

13 lines
401 B
Text

$NetBSD: patch-ar,v 1.2 2009/12/18 01:09:23 abs Exp $
--- src/charset/charset.c.orig 2004-08-22 20:19:10.000000000 +0000
+++ src/charset/charset.c
@@ -203,7 +203,7 @@ char *charset_qpen(int c, int qp)
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;