Ignore:
Timestamp:
Apr 21, 2009 11:40:42 AM (15 years ago)
Author:
gah
Message:

Fix encoding isBinary test (really is !isprint)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/core/RpEncode.cc

    r1387 r1410  
    3737    const char *cp, *endPtr;
    3838    for (cp = buf, endPtr = buf + size; cp < endPtr; cp++) {
    39         if ((!isascii(*cp)) && (!isprint(*cp))) {
     39        if (!isprint(*cp)) {
    4040            return true;
    4141        }
Note: See TracChangeset for help on using the changeset viewer.