Extra arg belongs to _decqp.

This commit is contained in:
wkj 2006-02-23 17:13:01 +00:00
parent 384d563d72
commit 1ff2c2b9b0

View file

@ -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;