plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 1ff2c2b9b09426f4db51077095c2cfd6b63f35d5
parent 384d563d72f5542d4527634b23723e1ca9039df7
Author: wkj <devnull@localhost>
Date:   Thu, 23 Feb 2006 17:13:01 +0000

Extra arg belongs to _decqp.

Diffstat:
Msrc/cmd/upas/nfs/decode.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cmd/upas/nfs/decode.c b/src/cmd/upas/nfs/decode.c @@ -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;