8288687: (fc) Unix version ofFileChannelImpl.transferTo0() should should return IOS_UNSUPPORTED if not Linux, macOS, nor AIX

Reviewed-by: alanb
This commit is contained in:
Brian Burkhalter 2022-06-21 15:27:52 +00:00
parent 19017358b1
commit 535fba8bfc

View file

@ -255,7 +255,7 @@ Java_sun_nio_ch_FileChannelImpl_transferTo0(JNIEnv *env, jobject this,
return IOS_UNSUPPORTED_CASE;
#else
return IOS_UNSUPPORTED_CASE;
return IOS_UNSUPPORTED;
#endif
}