URI: 
       tExtra arg belongs to _decqp. - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 1ff2c2b9b09426f4db51077095c2cfd6b63f35d5
   DIR parent 384d563d72f5542d4527634b23723e1ca9039df7
  HTML Author: wkj <devnull@localhost>
       Date:   Thu, 23 Feb 2006 17:13:01 +0000
       
       Extra arg belongs to _decqp.
       
       Diffstat:
         M src/cmd/upas/nfs/decode.c           |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/src/cmd/upas/nfs/decode.c b/src/cmd/upas/nfs/decode.c
       t@@ -69,7 +69,7 @@ decode(int kind, char *s, int *len)
                case QuotedPrintableU:
                        l = strlen(s)+1;
                        t = emalloc(l);
       -                l = decqp((uchar*)t, l, s, l-1, kind==QuotedPrintableU);
       +                l = _decqp((uchar*)t, l, s, l-1, kind==QuotedPrintableU);
                        *len = l;
                        t[l] = 0;
                        return t;