@@ -63,11 +63,11 @@ self = [super init]; cache = NULL; writeBuffer = NULL; - isBlocking = YES; + blocking = YES; return self; } - (BOOL)_isAtEndOfStream @@ -1363,19 +1363,19 @@ return cacheLength; } - (BOOL)isBlocking { - return isBlocking; + return blocking; } - (void)setBlocking: (BOOL)enable { #ifndef _WIN32 int flags; - isBlocking = enable; + blocking = enable; if ((flags = fcntl([self fileDescriptor], F_GETFL)) == -1) @throw [OFSetOptionFailedException newWithClass: isa stream: self];