Comment 13 for bug 299627

Revision history for this message
Jamie Strandboge (jdstrand) wrote :

Andreas-- the patch for hardy is not correct (FTBFS). Specifically:
- this->chstr[i] = data[j] | attrs;
+ this->chstr[i] = (isprint(data_c[j]) ? data_c[j] : '?') | attrs;

Your changed from data[] to data_c[]. AFAICT data_c doesn't exist in Hardy's code. Please resubmit after testing, mark to In Progress, and please detail the testing performed on Hardy. Thanks!