smm_io is now a valid mode for make_stream_from_fd

This commit is contained in:
jjgarcia 2005-03-16 16:26:41 +00:00
parent 077beb63cd
commit 0f04e00234

View file

@ -2740,6 +2740,9 @@ ecl_make_stream_from_fd(cl_object fname, int fd, enum ecl_smmode smm)
case smm_output:
mode = "w";
break;
case smm_io:
mode = "w+";
break;
#if defined(ECL_WSOCK)
case smm_input_wsock:
case smm_output_wsock: