commit 1ff2c2b9b09426f4db51077095c2cfd6b63f35d5 from: wkj date: Thu Feb 23 17:13:01 2006 UTC Extra arg belongs to _decqp. commit - 384d563d72f5542d4527634b23723e1ca9039df7 commit + 1ff2c2b9b09426f4db51077095c2cfd6b63f35d5 blob - df37490fe7f3419c481fe9812961fadb04cd6e9d blob + 572ae7b4a638c479499a6955897a29fb634b54b8 --- src/cmd/upas/nfs/decode.c +++ 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;